Git拾遗

把Git Bash要记忆的东西整理了下
设置用户名邮箱

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
$ git config --global user.name
"Your Name"
$ git config --global user.email
"email@example.com"
创建版本库
$ git init
把文件添加到版本库
$ git add readme.txt
$ git commit -m
"wrote a readme file"
查看不同
$ git diff readme.txt
当前状态
$ git status
查看commit
$ git log
回退上一个版本
$ git reset --hard HEAD^
退回上上一个版本
$ git reset --hard HEAD^^
退回上一百个版本
$ git reset --hard HEAD~100
使用版本号(只需要前几位)
$ git reset --hard 3628164
记录你的每一次命令
$ git reflog
丢弃工作区的修改让这个文件回到最近一次git commit或git add时的状态
$ git checkout -- file
把暂存区的修改撤销掉(unstage),重新放回工作区
$ git reset HEAD file
从版本库中删除该文件
$ git rm
$ git commit
创建SSH Key。
$ ssh-keygen -t rsa -C "youremail@example.com"
把本地仓库的内容推送到GitHub仓库
$ git remote add origin https://github.com/username/project.git
推送到远程
$ git push origin master
从远程库克隆
$ git clone https://github.com/username/project.git
创建dev分支,然后切换到dev分支:
$ git checkout -b dev
相当于
$ git branch dev
$ git checkout dev
列出所有分支
$ git branch
我们把dev分支的工作成果合并到当前分支上
$ git merge dev
删除dev分支
$ git branch -d dev
禁用Fast forward的合并
$ git merge --no-ff -m "merge with no-ff" dev
把当前工作现场“储藏”起来
$ git stash
查看
$ git stash list
打标签
$ git tag v.xxxx
查看标签
$ git show v.xxxx
创建带有说明的标签,用-a指定标签名,-m指定说明文字:
$ git tag -a v0.1 -m "version 0.1 released" 3628164
删除
$ git tag -d v0.1

文章目录
|