/usr/bin/git (System; 1.9.3 (Apple Git-50)
$ git config core.fileMode false
error: could not lock config file .git/config: No such file or directory
~/.git/config
/.git/config
/usr/bin/git
/usr/bin/.git
Does anyone know how to get Tower on OSX to ignore file permissions?
Any pointers in the right direction would be much appreciated.
Cheers
git config
would work within a git repo.
Outside a particular git repo, you would type:
git config --global core.fileMode false
Then check with Tower again (restarting it just to be sure).
The OP CMSCSS adds in the comments:
running
git config core.fileMode false
within the repo's/.git
directory worked.