Git 相關配置

itxq發表於2019-10-22

配置使用者名稱和郵箱

// 配置使用者名稱
git config --global user.name "username"
// 配置郵箱
git config --global user.email "xxx.@xx.com"

生成 SSH KEY

ssh-keygen -t rsa -C "xxx.@xx.com"

忽略檔案許可權或檔案擁有者的改變

# 當前版本庫
git config core.filemode false
# 全域性配置
git config --global core.fileMode false
本作品採用《CC 協議》,轉載必須註明作者和本文連結
這不是一個 BUG,這只是一個未列出來的特性!

相關文章