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:
- create new folder called "svn_repo"
- in terminal, issue command:
git svn init https://192.168.1.123:1234/svn/external/trunk/project1/. empty git repository created - issue
git svn fetchupdate svn server - then add xcode project files folder
- add modified files by:
git add .. no output shown, when issuinggit status, changed files tracked. - then, commit changes
git commit -am "this duck" - last, push svn
git svn dcommit&git svn rebase
i think it's quite complicated. know xcode supports git, how support svn also?
Comments
Post a Comment