git svn - Pushing from git into a subversion repository -
i have work in git repository, of coworkers want incorporate subversion repository. i'm going keep working git, nice have subversion repo remote can push once in while.
i don't plan on pulling ever. if doable, we'll have understanding subversion remote write-only point of view , read-only theirs. have access git repo, , working there anyway (yes, it's bit ridiculous, cannot change that).
is git-svn can handle?
yes. if use git-svn
set svn remote, can subsequently use dcommit
push changes @ will, indefinitely. if want enforce workflow can push svn repo, can achieved using subversion's access control mechanism; e.g., see how setup access control in svn?.
since default dcommit
rebases git branch you're updating svn from, should consider maintaining local branch purpose of publishing changes svn. simplest case if svn repository need receive commits master
, not attempt track merges.
Comments
Post a Comment