12

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?

4

4 に答える 4

12

ターミナルを開いて入力する

defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder

ファインダーでプロジェクトを開き、 .gitを削除します

行ってもいい。楽しみ

于 2013-01-16T11:44:50.017 に答える
3

You can find the solution in this question: How to fully delete a git repository created with init?

You really should try google first before asking on SO.

于 2012-04-30T09:08:55.430 に答える
2

The local git repository is stored in a folder named .git inside your project folder. It's hidden (any file/folder starting with a . is) but you can delete or move it using the Terminal. Once it's gone, your folder will no longer be recognized as having a git repository.

于 2012-04-30T09:09:10.713 に答える