tldr/pages/common/git-fetch.md

12 lines
231 B
Markdown
Raw Normal View History

# git fetch
2016-01-21 12:08:45 +00:00
> Download objects and refs from a remote repository.
2016-01-21 12:08:45 +00:00
- Fetch new branches and update remote-tracking branches:
`git fetch {{remote_name}}`
2016-01-21 12:08:45 +00:00
- Fetch the latest changes from all remote git servers:
`git fetch --all`