... | ... | @@ -65,4 +65,14 @@ git checkout issue999 |
|
|
git fetch
|
|
|
git checkout branchname
|
|
|
```
|
|
|
10. 一些额外的配置,希望大家也配置一下
|
|
|
|
|
|
```
|
|
|
#默认用rebase更新代码
|
|
|
git config --global branch.autosetuprebase always
|
|
|
|
|
|
#设置用户名
|
|
|
git config --global user.name 小明
|
|
|
git config --global user.email xiaom@pingansec.com
|
|
|
|
|
|
``` |