Reputation: 832
when i commit the changes i made in my project in Xcode, and then want to push them onto the server, xcode says i would have uncommitted changes, but I was just committing...
Therefor I can not push or pull to the server :-(
i do not have enough reputation to post image so i uploaded it to imageshack http://imageshack.us/a/img268/7136/bildschirmfoto20120924u.png
i already added .dsstore files to the .gitignore
Thank you!
Upvotes: 1
Views: 4415
Reputation: 832
OK i think i got it. Xcode does not list hidden files like .DS_Store so I had to remove the file from version control with git rm --cached .DS_Store
. git status
made my day thanks
Upvotes: 2