git檢視config配置資訊

roc_guo發表於2022-08-27
檢視配置

config 配置有system級別 global(使用者級別)和local(當前倉庫)三個設定先從system->global->local 底層配置會覆蓋頂層配置 分別使用--system/global/local 可以定位到配置檔案

檢視系統config

git config --system --list

檢視當前使用者(global)配置

git config --global  --list

檢視當前倉庫配置資訊

git config --local  --list

如下為檢視系統config資訊。

git檢視config配置資訊git檢視config配置資訊

配置使用者資訊
git config --global user.name "your name" 	//你的名稱
git config --global user.email "your email"     //你的郵箱


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69901823/viewspace-2912259/,如需轉載,請註明出處,否則將追究法律責任。

相關文章