git-fetch
Download objects and refs from another repository
git-pull
Fetch from and integrate with another repository or a local branch
git-push
Update remote refs along with associated objects
Overview
These commands handle remote repository operations:- git-fetch downloads changes from a remote without merging
- git-pull fetches and merges changes from a remote branch
- git-push uploads local commits to a remote repository
Workflow
Typical remote workflow:- Fetch - Download updates from remote
- Merge/Rebase - Integrate remote changes
- Push - Share your commits with others
Related Commands
- History Commands - Managing local commits
- Init Commands - Cloning repositories
- Ancillary Manipulators - Remote configuration
