Git 配置 如第一章所言,用 git config 配置 Git,要做的第一件事就是設置名字和郵箱地址: $ git config --global user.name "John Doe" $ git config --global user.email johndoe@example.com 從現在開始,你會瞭解到一些類似以上但更為有趣的設置選項來自訂 Git。
git-scm.com