Git最小配置

2021-09-24 20:57:40 字數 527 閱讀 6562

git config [--local | --global | --system] user.name 'your name' 

git config [--local | --global | --system] user.email 'your email'

優先順序:local > global > system

git config #出現這個命令下可以新增的引數

git config --list #出現local、global、system三個範圍的配置

git config [--local | --global | --system] --list #指定範圍內的配置資訊 這個指令新增local引數時候需要進入某個倉庫裡面才能使用,不然會提示錯誤

git config --unset [--local | --global | --system] user.name 'your name'
摘選自 個人的git完整筆記

03 使用Git之前需要做的最小配置

1 配置user.name和user.email git config global user.name 你的使用者名稱 git config global user.email 你的郵箱 2 config的三個作用域 git config local git config global git c...

git 以及phpstorm配置git

windows環境下 生成公鑰和私鑰 上傳 到遠端倉庫的時候需要秘鑰進行驗證是否本人上傳的。開啟git目錄下的git bash 輸入ssh keygen,回車 可直接不輸入路徑,使用預設路徑 c users administrator ssh 按照提示要輸入兩次密碼,但是如果輸入了,每次操作操作gi...

git學習之git配置

檢視配置git config l 檢視系統configgit config system list 檢視當前使用者 global 配置git config global list 1 d program files git etc git 安裝目錄下的 gitconfig system 系統級 2 ...