Skip to main content
  1. Learn
  2. Software Development
  3. Guides
  4. Git tutorial
  5. 如何使用 Git
  6. 如何在 Command Line 中使用 Git
  7. 默认设置
GuidesSoftware DevelopmentBacklog
Git

Project and code management together.

默认设置

接下来,设置您的默认用户名和电子邮件地址,以便 Git 可以识别提交更改的人。

此设置只需执行一次。

Git 控制台配置保存在用户家目录下的.gitconfig文件中。您可以手动编辑该文件,但在本教程中我们将使用 git config 命令

$ git config --global user.name ""
$ git config --global user.email ""

设置 Git 输出颜色。

$ git config --global color.ui auto

您也可以給 Git 命令设置别名。例如,您可以将“checkout”缩写为“co”来执行命令。

$ git config --global alias.co checkout

仅限 Windows

如果您在 Windows 上使用控制台 (Git Bash),包含非 ASCII 字符的文件名称,将以类似“\346\226\260\350\246…”的形式显示。我们可以通过以下方式将其配置为允许文件显示 的文件名称:

$ git config --global core.quotepath off

如果您在 Windows 上使用控制台,则只能使用 ASCII 字符。

因此,要在提交消息中包含多字节字符,您必须设置外部编辑器,并且不使用“-m”选项。

外部编辑器应与 UTF-8 字符编码和 LF 换行编码兼容。

git config --global core.editor "\"[path of the editor you use]\"" git config --global core.editor "\"[path of the editor you use]\""

设置完成!现在我们可以开始工作了。

Subscribe to our newsletter

Learn with Nulab to bring your best ideas to life