Git
Git个人常用的一些配置
设置git用户信息
切换到仓库的目录,设置用户邮箱和名字,才能提交代码。
1
2
3
$ cd /path/to/repository
$ git config user.name [username]
$ git config user.email [email]
如果希望这个设置在全局都生效可以加上--global
参数
1
2
$ git config --global user.name [username]
$ git config --global user.email [email]
设置默认的commit
编辑器
默认的编辑器是nano,可以修改为vim或者其他你喜欢的编辑器
1
$ git config --global core.editor vim
.ignore-update
在根目录下添加.ignore-update
文件,指定git更新的文件。此文件为空,则git fetch
不会更新任何内容。
1
$ touch .ignore-update
branch操作
切换远程分支
1
2
$ git checkout remotes/origin/[branch]
$ git checkout -b [branch]
新建分支 在当前分支基础上新建分支
1
2
3
$ git branch [branch]
$ git checkout [branch]
$ git push origin [branch]
issues
如果有疑惑或错误,请提issues –> Issues