I'm trying to git add
and commit
a Mac OS X executable application.
I know that in OS X applications are a folder with the extension .app
Git see this OS X executable as a folder so it adds a subfolder
/usr/local/git/bin/git add -u MyApp/dist/MyApp.app/Contents/Frameworks/QtCore.framework/Versions/4.0/QtCore
The problem is that encounter a symbolic link and it return error:
returned exit status 128: fatal: 'MyApp/dist/MyApp.app/Contents/Frameworks/QtCore.framework/Versions/4.0/QtCore' is beyond a symbolic link
How can I add it with git
?