git

git操作

初始化姓名、邮箱

1
2
3
4
5
git config --global user.name "huhu415"
git config --global user.email zzyann@outlook.com  //设置姓名、邮箱
git config user.name
git config user.email   //查看姓名、邮箱
git config --list   //查看其他配置

文件管理

 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 从云上拉取最新的,如果有分支,会自动合并
Licensed under CC BY-NC-SA 4.0
使用 Hugo 构建
主题 StackJimmy 设计