youCanCheatMe
youCanCheatMe

Reputation: 75

configuring Subversion in Xcode

I have configured SVN repositories in my XCode,I have imported and checked out well.but how can i commit and revert files which are in xCode?

Upvotes: 0

Views: 233

Answers (1)

Kay
Kay

Reputation: 13146

XCode 4.x:

  • File / Source Control / Commit to get a list of all changed files to commit.
  • For one file go to navigator, right click and select Source Control. There you'll find commit, revert, etc.

XCode 3.26:

  • Menu SCM Commit Entire Project
  • Current file: Commit Changes or Discard Changes but this is only available when your editor pane is split and the file is selected in the list of (changed) files enter image description here

Upvotes: 2

Related Questions