Git 本機基本配置
因為git 會認機器,所以需要設定識別資料
git config --list
git config --global user.name "xxx" git config --global user.email "abc@gmail.com"
git config --local user.name "xxx" git config --local user.email "abc@gmail.com"
Last updated 2 years ago
Was this helpful?