我有一個git倉庫,我正在與幾個開發人員共享。我們會定期進行git pull並推動它。不幸的是,每次我執行git pull時,更改的文件都將失去組寫入權限。如何阻止git這樣做?Git不斷刪除組寫入權限
我在Ubuntu 12.04 LTS上運行這個。
上的共享回購的配置是這樣的:
[core]
repositoryformatversion = 0
filemode = true
bare = true
sharedRepository = group
我也跑在它下面的命令,試圖修復它
find repo.git -type d -exec chmod g+rws {} +
sudo chmod -R g+rw repo.git/objects
不管我最終的文件夾與755和文件與644時,我分別想要775和664。
我已經是被這解決了類似的問題http://stackoverflow.com/questions/5306768/file-permission-issues -with-sharing-git-remote-repository – Magnus 2013-02-15 18:56:06
我試過了,組寫權限一直在消失。這就是爲什麼我分開問這個問題的原因。 – 2013-03-01 18:39:04