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