尝试配置用户名和用户电子邮件时出现以下错误:
错误:无法锁定配置文件C:/ Program Files / Git / mingw64 / etc / .gitconfig:权限被拒绝
答案 0 :(得分:0)
此错误可能是由于多种原因造成的。如果您有文件.gitconfig.lock
,则无法锁定配置文件。只需删除.gitconfig.lock
,一切都会正常。
另一种可能性是您没有对该文件的写权限。您可以检查您是否拥有文件(假设.gitconfig
位于~/
):
ls -la ~/.gitconfig
第二列显示所有者。如果该文件不属于您(即您的用户),则可以更改所有权(假设.gitconfig
位于~/
上)
# note: omit the <>
sudo chown <your_username>:<your_username> ~/.gitconfig
如果文件属于您,但您仍然无法对其进行写操作,则可能要设置写许可权(假设.gitconfig
位于~/
上)
sudo chmod 755 ~/.gitconfig