工作区、暂存区、版本库
工作区:就是你在电脑里能看到的目录。
暂存区:英文叫 stage 或 index。一般存放在 .git 目录下的 index 文件(.git/index)中,所以我们把暂存区有时也叫作索引(index)。
版本库:工作区有一个隐藏目录 .git,这个不算工作区,而是 Git 的版本库。
本地仓库的代码还未被更新,此时:
(1) 更新远程仓库的代码为最新的
git fetch --all
(2) 让本地代码与origin / master完全相同
git reset --hard origin/master
(3) git pull拉取远程代码
git pull origin master
(4) git merge将暂存区代码更新到本地工作区
git merge master