You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# -s is there to signify that my Subversion repository has a standard layout (trunk/, branches/, and tags/)
$ git-svn clone -s http://example.com/my_subversion_repo local_dir
Gitignore
# check in strategy
$ git svn show-ignore > .gitignore
# just local strategy
$ git svn show-ignore >> .git/info/exclude
commit branch to 'origin'/trunk (via rebase strategy)
# This will download all new changesets from Subversion, apply them
# to the last checkout from Subversion, and then re-apply your local
# changes on top of that.
$ git svn rebase
$ git co <your banch>
$ git rebase master
$ git co master
$ git merge <your branch>
$ git svn rebase
$ git svn dcommit