不同資料夾使用不同的Git使用者

冰豆花發表於2024-10-06
tee ~/.gitconfig <<EOF
[includeIf "gitdir:~/Desktop/Project/"]
  path = ~/Desktop/Project/.gitconfig
EOF

tee ~/Desktop/Project/.gitconfig <<EOF
[user]
  name = your_name
  email = your_mail
EOF

相關文章