Git 配置

配置用户信息

1
2
3
4
$ git config --global user.name "ayden"
$ git config --global user.email test@123.com #邮箱替换自己的

# --global 如果采用global选项,那么标明此配置在整个当前系统用户下都有效,所有项目默认使用此配置信息。

生成ssh key

1
2
3
ssh-keygen -t rsa

#三次回车默认配置即可

将公钥添加到github

1
2
3
4
5
6
7
root@work:~/.ssh# pwd 
/root/.ssh
root@work:~/.ssh# ll
total 8
-rw------- 1 root root 0 Jan 13 17:10 authorized_keys
-rw------- 1 root root 2590 Feb 21 16:21 id_rsa
-rw-r--r-- 1 root root 563 Feb 21 16:21 id_rsa.pub #公钥

路径:Setting –> SSH and GPG keys –> New SSH key

image.png

1
2
3
4
5
6
7
8
9
10
11
查看分支:git branch

创建分支:git branch <name>

切换分支:git checkout <name>

创建+切换分支:git checkout -b <name>

合并某分支到当前分支:git merge <name>

删除分支:git breach -d <name>