在Server端部署code時git clone跑出:
Unable to access ‘git/attributes’
滿頭問號不知道為什麼,後來發現原因為.config檔案非當下使用者,
1 2 3 4 5 |
$ cd ~ $ ls -al // 發現 .config 居然 user 是root.... $ sudo chown -R $(whoami) .config |
重設後,在git pull即可通過。
Reference
https://stackoverflow.com/questions/27150926/unable-to-access-git-attributes