1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 07:18:29 +01:00
tldr/pages/common/git-fetch.md

12 lines
231 B
Markdown
Raw Normal View History

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