Git学习笔记 - 设置Git

用户设置

设置用户的用户名及E-mail,在终端中设置:

git config --global user.name "username"
git config --global user.email "name@example.com"

设置完成可以通过git config --list进行检查。

其中的--global表示进行的全局设置。

也可以修改文件进行设置,文件为.gitconfig。文件内容:

[user]
  name = username
  email = name@example.com

给每个项目设置不同的作者

在指定的项目中执行一下操作:

git config --local user.name "username"
git config --local user.email "name@example.com"

其他设置

更换编辑器

git config --global core.editor emacs # 更换为EMACS

设置缩写

git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.st status

设置之后,只需输入git co,就可以实现与输入git checkout一样的效果。

还可以加入一些参数,例如如下的设置:

git config --global alias.l "log --oneline --graph"

即使用l来代替log --oneline --graph

在配置文件中的内容:

[alias]
co = checkout
br = branch
st = status
l = log --oneline --graph
ls = log --graph --pretty=format:"%h <%an> %ar %s"
posted @ 2024-10-26 19:26  河东码士  阅读(6)  评论(0编辑  收藏  举报