gitee mac 配置全局路径
时间: 2023-09-19 12:10:33 浏览: 55
gitee开发流程.txt
您可以在终端中输入以下命令来配置全局路径:
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
git config --global core.autocrlf input
git config --global core.safecrlf true
其中,"Your Name" 替换为您的用户名,"your.email@example.com" 替换为您的电子邮件地址。这些命令将帮助您在使用 Git 时更加方便和高效。
阅读全文