OC系列教程之gitError:unable to access '.config/git/attributes

weixin_34253539發表於2018-10-25

xcode中git進行commit時提示“warning: unable to access '.config/git/attributes': Permission denied”這種錯誤~

解決方案如下:

開啟終端,依次輸入如下命令:

cd  ~/



ls -al



檢視彈出的檔案的歸屬,若是".config許可權歸屬於root",如下圖所示,

11645534-624eff84cd3e33f4.png


若config如上圖所示,則終端接著輸入“sudo chown my_user_name .config”,注意替換my_user_name;


之後git 中提交commit命令程式碼正確上傳





參考連結:

https://stackoverflow.com/questions/27150926/unable-to-access-git-attributes

相關文章