一、新建项目

1
2
3
4
5
6
7
8
# 在当前目录新建一个Git代码库
$ git init

# 新建一个目录,将其初始化为Git代码库
$ git init [project-name]

# 下载一个项目和它的整个代码历史
$ git clone [url]

二、配置

1
2
3
4
5
6
7
8
9
# 显示当前的Git配置
$ git config --list

# 编辑Git配置文件
$ git config -e [--global]

# 设置账户信息
$ git config [--global] user.name "[name]"
$ git config [--global] user.email "[email address]"

三、文件增加与删除

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 添加指定文件到暂存区
$ git add [file1] [file2] ...

# 添加指定目录到暂存区
$ git add [dir]

# 将当前目录下的所有文件添加到暂存区
$ git add .

# 添加每个变化前,都会要求确认,对于同一个文件的多处变化,可以实现分次提交
$ git add -p

# 删除工作区文件,并放入暂存区
$ git rm [file1] [file2] ...

# 重命名文件,并将改名后的文件放入暂存区
$ git mv [file-original] [file-renamed]

四、代码提交

1
2
3
4
5
6
7
8
9
10
11
# 从暂存区提交到远程仓库
$ git commit -m [message]

# 将暂存区内的指定文件提交到远程仓库
$ git commit [file1] [file2] ... -m [message]

# 提交工作区自上次commit之后的变化,直接到远程仓库
$ git commit -a

# 提交时显示所有diff信息
$ git commit -v

五、分支

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 列出所有本地分支
$ git branch

# 列出所有远程分支
$ git branch -r

# 列出所有本地分支和远程分支
$ git branch -a

# 新建一个分支,但依然停留在当前分支
$ git branch [branch-name]

# 新建一个分支,并切换到该分支
$ git checkout -b [branch]

# 切换到上一个分支
$ git checkout -

# 合并指定分支到当前分支
$ git merge [branch]

# 选择一个commit,合并进当前分支
$ git cherry-pick [commit]

# 删除分支
$ git branch -d [branch-name]

# 删除远程分支
$ git push origin --delete [branch-name]
$ git branch -dr [remote/branch]

六、标签

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 列出所有tag
$ git tag

# 查看tag信息
$ git show [tag]

# 新建一个tag在当前commit
$ git tag [tag]

# 新建一个tag在指定commit
$ git tag [tag] [commit]

# 提交指定tag
$ git push [remote] [tag]

# 提交所有tag
$ git push [remote] --tags

# 删除本地tag
$ git tag -d [tag]

# 删除远程tag
$ git push origin :refs/tags/[tagName]

七、查看信息

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 显示有变更的文件
$ git status

# 显示当前分支的版本历史
$ git log

# 搜索提交历史,根据关键词
$ git log -S [keyword]

# 显示某个文件的版本历史,包括文件改名
$ git log --follow [file]
$ git whatchanged [file]

# 显示过去5次提交
$ git log -5 --pretty --oneline

# 显示所有提交过的用户,按提交次数排序
$ git shortlog -sn

# 显示暂存区和工作区的差异
$ git diff

# 显示某次提交发生变化的文件
$ git show --name-only [commit]

八、远程同步

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 下载远程仓库的所有变动
$ git fetch [remote]

# 显示所有远程仓库
$ git remote -v

# 显示某个远程仓库的信息
$ git remote show [remote]

# 上传本地指定分支到远程仓库
$ git push [remote] [branch]

# 推送所有分支到远程仓库
$ git push [remote] --all

九、撤销

1
2
3
4
5
6
7
8
# 恢复暂存区的指定文件到工作区
$ git checkout [file]

# 恢复暂存区的所有文件到工作区
$ git checkout .

# 重置暂存区与工作区,与上一次commit保持一致
$ git reset --hard