@kyanny's blog

My thoughts, my life. Views/opinions are my own.

2011-05-09から1日間の記事一覧

git-svn でリモートブランチ (svn) をローカルでマージして push する (trunk)

すでに svn repo のほうでブランチが切られてるとする。 $ git svn fetch $ git co -b local_hoge remotes/hoge $ git co master $ git merge --no-ff local_hoge $ git svn dcommitgit-svnでリモートブランチをmergeするときは–no-ffをつけるべし - Webtech…