配置 Git#

概述#

你的个人 Git 配置保存在你主目录的 .gitconfig 文件中。

这是一个示例 .gitconfig 文件

[user]
        name = Your Name
        email = you@yourdomain.example.com

[alias]
        ci = commit -a
        co = checkout
        st = status
        stat = status
        br = branch
        wdiff = diff --color-words

[core]
        editor = vim

[merge]
        summary = true

你可以直接编辑此文件,也可以使用 git config --global 命令

git config --global user.name "Your Name"
git config --global user.email you@yourdomain.example.com
git config --global alias.ci "commit -a"
git config --global alias.co checkout
git config --global alias.st "status -a"
git config --global alias.stat "status -a"
git config --global alias.br branch
git config --global alias.wdiff "diff --color-words"
git config --global core.editor vim
git config --global merge.summary true

要在另一台计算机上设置,你可以复制你的 ~/.gitconfig 文件,或运行上面的命令。

详细说明#

user.name 和 user.email#

最佳实践是在命令行中告诉 git 你是谁,以便标记你对代码做出的任何更改。

git config --global user.name "Your Name"
git config --global user.email you@yourdomain.example.com

这将把设置写入你的 Git 配置文件,该文件现在应该包含一个包含你的姓名和电子邮件的用户部分

[user]
      name = Your Name
      email = you@yourdomain.example.com

当然,你需要用你的真实姓名和电子邮件地址替换 Your Name[email protected]

别名#

你可能会从一些针对常用命令的别名中受益。

例如,你可能希望能够将 git checkout 简化为 git co。或者你可能想将 git diff --color-words(它提供差异的格式化输出)别名为 git wdiff

以下 git config --global 命令

git config --global alias.ci "commit -a"
git config --global alias.co checkout
git config --global alias.st "status -a"
git config --global alias.stat "status -a"
git config --global alias.br branch
git config --global alias.wdiff "diff --color-words"

将在你的 .gitconfig 文件中创建一个 alias 部分,内容如下

[alias]
        ci = commit -a
        co = checkout
        st = status -a
        stat = status -a
        br = branch
        wdiff = diff --color-words

编辑器#

你可能还想确保使用你选择的编辑器

git config --global core.editor vim

合并#

在进行合并时强制使用摘要(~/.gitconfig 文件再次)

[merge]
   log = true

或从命令行

git config --global merge.log true

花哨的日志输出#

这是一个非常好的别名,可以获得花哨的日志输出;它应该放在你的 .gitconfig 文件的 alias 部分

lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)[%an]%Creset' --abbrev-commit --date=relative

你使用别名

git lg

它提供类似于(但带颜色!)这样的图形/文本输出

* 6d8e1ee - (HEAD, origin/my-fancy-feature, my-fancy-feature) NF - a fancy file (45 minutes ago) [Matthew Brett]
*   d304a73 - (origin/placeholder, placeholder) Merge pull request #48 from hhuuggoo/master (2 weeks ago) [Jonathan Terhorst]
|\
| * 4aff2a8 - fixed bug 35, and added a test in test_bugfixes (2 weeks ago) [Hugo]
|/
* a7ff2e5 - Added notes on discussion/proposal made during Data Array Summit. (2 weeks ago) [Corran Webster]
* 68f6752 - Initial implementation of AxisIndexer - uses 'index_by' which needs to be changed to a call on an Axes object - this is all very sketchy right now. (2 weeks ago) [Corr
*   376adbd - Merge pull request #46 from terhorst/master (2 weeks ago) [Jonathan Terhorst]
|\
| * b605216 - updated joshu example to current api (3 weeks ago) [Jonathan Terhorst]
| * 2e991e8 - add testing for outer ufunc (3 weeks ago) [Jonathan Terhorst]
| * 7beda5a - prevent axis from throwing an exception if testing equality with non-axis object (3 weeks ago) [Jonathan Terhorst]
| * 65af65e - convert unit testing code to assertions (3 weeks ago) [Jonathan Terhorst]
| *   956fbab - Merge remote-tracking branch 'upstream/master' (3 weeks ago) [Jonathan Terhorst]
| |\
| |/

感谢 Yury V. Zaytsev 发布了它。