当我这样做时:
git clone git@192.168.15.11:xxx/xxx.git
出现错误:
Cloning into 'xxx'...
error: copy-fd: write returned Permission denied
fatal: cannot copy '/usr/share/git-core/templates/description' to '/mnt/wk01/xxx/.git/description': Permission denied
谁能帮帮我?
答案 0 :(得分:2)
权限问题可能不在目标文件夹/mnt/wk01/xxx/
中,而是在源文件夹usr/share/git-core/templates/description
包:git-core,版本:1.5.6.5
放置在/ usr / share / git-core / templates中的文件的文件权限 现在错了。它们对每个人都不可读,所以命令“git init” 失败并留言:
fatal: cannot copy /usr/share/git-core/templates/description to ...
模板中所有文件的
chmod a+r
解决了这个问题。