stMind

about Tech, Computer vision and Machine learning

2013-07-26から1日間の記事一覧

gitのトピックブランチをsvnのブランチにコミットする

gitでトピックブランチを作って作業していたものをsvnにブランチとしてコミットする方法。 $ git svn branch SomeFeature $ git branch -a master feature/SomeFeature remotes/SomeFeature $ git checkout feature/SomeFeature $ git rebase SomeFeature $ …