1
2
3
4
5
6
7
8
9
10
11
12
13
|
workplace(磁盘) - index(暂存区) - local repository(本地仓库) - remote repository(远程仓库)
- 直接修改就更改了workplace的文件 //撤销用git restore
- git add 后变为index //撤销add这个操作,用git reset
- git commit 后变为local repository
- git push 后变成remote repository
#从暂存区回来
git reset HEAD <file>
- git clone 从云上复制下来一个
- git pull 从云上拉取最新的,如果有分支,会自动合并
|