Git是一个开源的分布式版本控制系统,可以有效、高速的处理从很小到非常大的项目版本管理。

- Workspace:工作区
- Index / Stage:暂存区
- Repository:仓库区(或本地仓库)
- Remote:远程仓库
1 创建用户及配置
Git的设置文件为.gitconfig
,既可全局配置,也可项目配置。
1 |
|
2 | $ git config --list |
3 |
|
4 |
|
5 | $ git config -e [--global] |
6 |
|
7 |
|
8 | $ git config [--global] user.name "[name]" |
9 | $ git config [--global] user.email "[email address]" |
10 | |
11 |
|
12 | $ git config user.name |
13 | $ git config user.email |
2 创建一个版本库
1 |
|
2 | $ git init |
3 |
|
4 |
|
5 | $ git init [project-name] |
6 |
|
7 |
|
8 | $ git clone [url] |
3 文件操作
1 |
|
2 | $ git status |
3 |
|
4 |
|
5 | $ git add [file1] [file2] ... |
6 |
|
7 |
|
8 | $ git add [dir] |
9 |
|
10 |
|
11 | $ git add . |
12 |
|
13 |
|
14 |
|
15 | $ git add -p |
16 |
|
17 |
|
18 | $ git rm [file1] [file2] ... |
19 |
|
20 |
|
21 | $ git rm --cached [file] |
22 |
|
23 |
|
24 | $ git mv [file-original] [file-renamed] |
4 代码提交
1 |
|
2 | $ git commit -m [message] |
3 |
|
4 |
|
5 | $ git commit [file1] [file2] ... -m [message] |
6 |
|
7 |
|
8 | $ git commit -a |
9 |
|
10 |
|
11 | $ git commit -v |
12 |
|
13 |
|
14 |
|
15 | $ git commit --amend -m [message] |
16 |
|
17 |
|
18 | $ git commit --amend [file1] [file2] ... |
5 分支
1 |
|
2 | $ git branch |
3 |
|
4 |
|
5 | $ git branch -r |
6 |
|
7 |
|
8 | $ git branch -a |
9 |
|
10 |
|
11 | $ git branch [branch-name] |
12 |
|
13 |
|
14 | $ git checkout -b [branch] |
15 |
|
16 |
|
17 | $ git branch [branch] [commit] |
18 |
|
19 |
|
20 | $ git branch --track [branch] [remote-branch] |
21 |
|
22 |
|
23 | $ git checkout [branch-name] |
24 |
|
25 |
|
26 | $ git checkout - |
27 |
|
28 |
|
29 | $ git branch --set-upstream [branch] [remote-branch] |
30 |
|
31 |
|
32 | $ git merge [branch] |
33 |
|
34 |
|
35 | $ git cherry-pick [commit] |
36 |
|
37 |
|
38 | $ git branch -d [branch-name] |
39 |
|
40 |
|
41 | $ git push origin --delete [branch-name] |
42 | $ git branch -dr [remote/branch] |
6 查看日志信息
1 |
|
2 | $ git log |
3 |
|
4 |
|
5 | $ git log --stat |
6 |
|
7 |
|
8 | $ git log -S [keyword] |
9 |
|
10 |
|
11 | $ git log [tag] HEAD --pretty=format:%s |
12 |
|
13 |
|
14 | $ git log [tag] HEAD --grep feature |
15 |
|
16 |
|
17 | $ git log --follow [file] |
18 | $ git whatchanged [file] |
19 |
|
20 |
|
21 | $ git log -p [file] |
22 |
|
23 |
|
24 | $ git log -5 --pretty --oneline |
25 |
|
26 |
|
27 | $ git log --oneline |
28 |
|
29 |
|
30 | $ git shortlog -sn |
31 |
|
32 |
|
33 | $ git blame [file] |
34 |
|
35 |
|
36 | $ git diff |
37 |
|
38 |
|
39 | $ git diff --cached [file] |
40 |
|
41 |
|
42 | $ git diff HEAD |
43 |
|
44 |
|
45 | $ git diff [first-branch]...[second-branch] |
46 |
|
47 |
|
48 | $ git diff --shortstat "@{0 day ago}" |
49 |
|
50 |
|
51 | $ git show [commit] |
52 |
|
53 |
|
54 | $ git show --name-only [commit] |
55 |
|
56 |
|
57 | $ git show [commit]:[filename] |
58 |
|
59 |
|
60 | $ git reflog |
7 标签
1 |
|
2 | $ git tag |
3 |
|
4 |
|
5 | $ git tag [tag] |
6 |
|
7 |
|
8 | $ git tag [tag] [commit] |
9 |
|
10 |
|
11 | $ git tag -d [tag] |
12 |
|
13 |
|
14 | $ git push origin :refs/tags/[tagName] |
15 |
|
16 |
|
17 | $ git show [tag] |
18 |
|
19 |
|
20 | $ git push [remote] [tag] |
21 |
|
22 |
|
23 | $ git push [remote] --tags |
24 |
|
25 |
|
26 | $ git checkout -b [branch] [tag] |
8 远程同步
1 |
|
2 | $ git fetch [remote] |
3 |
|
4 |
|
5 | $ git remote -v |
6 |
|
7 |
|
8 | $ git remote show [remote] |
9 |
|
10 |
|
11 | $ git remote add [shortname] [url] |
12 |
|
13 |
|
14 | $ git pull [remote] [branch] |
15 |
|
16 |
|
17 | $ git push [remote] [branch] |
18 |
|
19 |
|
20 | $ git push [remote] --force |
21 |
|
22 |
|
23 | $ git push [remote] --all |
9 撤销操作
1 |
|
2 | $ git checkout [file] |
3 |
|
4 |
|
5 | $ git checkout [commit] [file] |
6 |
|
7 |
|
8 | $ git checkout . |
9 |
|
10 |
|
11 | $ git reset [file] |
12 |
|
13 |
|
14 | $ git reset --hard |
15 |
|
16 |
|
17 | $ git reset [commit] |
18 |
|
19 |
|
20 | $ git reset --hard [commit] |
21 |
|
22 |
|
23 | $ git reset --keep [commit] |
24 |
|
25 |
|
26 |
|
27 | $ git revert [commit] |
28 |
|
29 |
|
30 | $ git stash |
31 | $ git stash pop |
10 其他
1 |
|
2 | $ git archive |
3 |
|
4 |
|
5 | $ git diff --cached [版本1] 文件A |
6 |
|
7 |
|
8 | $ git diff 版本1 版本2 文件A |