git fetch
Terminology
FETCH_HEAD ¶ A reference to .git/FETCH_HEAD, a file in which references and the object names of fetched references are stored during a git fetch.
git fetch <remote> <branch> ¶ Fetches the code but does not merge it into your working directory.
Facts, Thoughts and Opinions
git pull
git pull <remote> <branch> = git fetch <remote> <branch>; git merge FETCH_HEAD;
Images
[[/div]]
- Subtopics
- Writings