git使用教程10-修改 config 配置用戶名和郵箱

前言

當咱們使用 git 提交代碼的時候,發現帳號和郵箱是以前同事配置的,這時候須要改爲本身的帳號,那麼如何修改 git 的 config 配置文件?
就算卸載 git 從新安裝也沒用,以前的配置文件仍是在的。git

git 查看所有配置

先查看本地的 config 配置文件內容markdown

git config --listide

這時候看到 user.name 和 user.eamil 並非本身的post

刪除全局 config 配置

使用如下命令刪除其中一個配置項code

git config --global --unset confignameblog

刪除後,再去查看就沒有了it

添加 config 配置

再把本身的 git 帳號和郵箱添加到 config 配置class

git config --global user.name "John Doe"
git config --global user.email johndoe@example.com

這樣咱們的配置就改回來了email

config 增刪改查操做

新增配置

git config --global --add configname configvalue

刪除

git config --global --unset configname

修改

git config --global configname configvalue

查詢

git config --global configname

查詢所有

git config --list

相關文章
相關標籤/搜索