尝试设置 git init 时出现此错误:
$ git init error: could not lock config file C:/Users/khaled/Desktop/firstTemplete/.git/config: No such file or directory fatal: could not set 'core.repositoryformatversion' to '0'
有人知道吗?
尝试设置 git init 时出现此错误:
$ git init error: could not lock config file C:/Users/khaled/Desktop/firstTemplete/.git/config: No such file or directory fatal: could not set 'core.repositoryformatversion' to '0'
有人知道吗?
调用时git init
,.git 目录由 GIT 创建,并创建与 repo 相关的元信息,包括提交历史记录。这是由于当前用户的写入权限不适当而导致的问题。
sudo git init
您可能在文件夹中没有足够的写入权限。尝试使用具有管理员权限的 git init。
在 Windows 中,由于病毒和威胁防护软件阻止了未经授权的文件夹更改,可能会出现此问题。
从 cmd 运行“Git init”。完毕!