Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

removing local git repositary from Xcode Project?

I had selected local git repositary when I created xcode Project. But when import to SVN and commit, it commits locally not in SVN. How can I resolve this problem? I want to remove all hidden local git files from the Xcode project without affecting source code? any help please?

like image 678
nameless Avatar asked Apr 30 '12 09:04

nameless


1 Answers

Open Terminal and Type

defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder

open the project in finder delete the .git

Good to go. Enjoy

like image 165
NaXir Avatar answered Sep 29 '22 22:09

NaXir