GIT-SVN in Xcode 5 -


i got svn server source codes via https.

the address similar this:

https://192.168.1.123:1234/svn/external/trunk/ 

the current workflow me commit xcode project svn follow:

  1. create new folder called "svn_repo"
  2. in terminal, issue command: git svn init https://192.168.1.123:1234/svn/external/trunk/project1/. empty git repository created
  3. issue git svn fetch update svn server
  4. then add xcode project files folder
  5. add modified files by: git add .. no output shown, when issuing git status, changed files tracked.
  6. then, commit changes git commit -am "this duck"
  7. last, push svn git svn dcommit & git svn rebase

i think it's quite complicated. know xcode supports git, how support svn also?


Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -