git fetch
第1步
先读取 .git/config
配置 [remote origin]
,若 fetch
并没有指定其中一个或多个远程仓库,就会处理所有的远程仓库
bash
[remote "origin"]
url = git@github.com:kaku/testGit.git
fetch = +refs/heads/:refs/remotes/origin/
第2步
git fetch
会拉取远程仓库的所有远程分支的最新 Commit-ID
到「.git/FETCH_HEAD
」文件中.
若有多个分支则FETCH_HEAD
内会有多行数据,首行为 git fetch
时所在分支的同名远程分支
git fetch origin master
第1步 :如上
第2步
FETCH_HEAD
内只有1行数据,记录的是 git fetch
时指定的远程分支的最新 Commit-ID