Git Install & Config
1.安装git
sudo apt-get update sudo apt-get install git
2.配置git
必配置项:
git config --global user.name "YourName" git config --global user.email "[email protected]"
可选项:
git config --global https.proxy https://user:password@address:port git config --global color.ui true git config --global alias.co checkout git config --global alias.ci commit git config --global alias.br branch git config --global alias.last 'log -1' git config --global alias.unstage 'reset HEAD' git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
查看配置项:
git config --list user.name=YourName [email protected]
3.配置github ssh key
4.配置gitignore
5.git tips
25 Tips for Intermediate Git Users
6.git book
相关推荐
Equation 2020-08-09
iamjiyu 2020-07-21
formula 2020-11-12
huhongfei 2020-11-05
乾坤一碼農 2020-10-27
liumengyanysu 2020-10-22
E哥的aws认证攻略 2020-10-15
tianyafengxin 2020-10-08
guying 2020-10-05
好脑筋不如烂笔头 2020-09-17
nebulali 2020-09-11
佛系程序员J 2020-09-15
fenggit 2020-09-15
JustHaveTry 2020-09-11
兄dei努力赚钱吧 2020-09-06
IngeniousIT 2020-08-25