0%

Pro Git

Common used

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
git init <your repository name> #初始化本地git仓库(新建仓库)

git config --global user.name "xxx" # 配置用户名

git config --global user.email "xxx@xxx.com" # 配置邮件

git commit -m "your useful commit message" # 提交

git commit --amend -m 'xxx' # 合并上一次提交(用于反复修改)

git commit -am 'xxx' # 将add和commit合为一步

git rm xxx # 删除index中的文件

git rm -r * # 递归删除

git log # 显示提交日志

git log -1 # 显示1行日志 -n为n行

git checkout <branch_name> # 切换分支

Remote

1
2
3
4
5
git remote add <shortname> <url> # 添加远程仓库

git push -u <short_name> <your_branch_name>

git push --set-upstream <short_name> <branch_name>