git:FETCH_HEAD

FETCH_HEAD: 是一个版本链接,记录在本地的一个文件中,指向着目前已经从远程仓库取下来的分支的末端版本。

举例说明:将远程origin仓库的xx分支合并到本地的yy分支。
git fetch origin xx
git checkout yy
git merge FETCH_HEAD

http://xigua366.iteye.com/blog/2400324

原文地址:https://www.cnblogs.com/shengulong/p/9623904.html