subversionのtrunkのhistoryをgitのmasterブランチに移す方法
1126 ワード
subversionからgitに移行したい。でもいままでのhistoryは引き継ぎたい。かといってsubversionのすべてのブランチはもういらない。というときに使える方法
移行先Gitリポジトリを作る
git init --bare newrepo.git
手元に空のgitリポジトリを持ってくる
git clone http://git.example.com:newrepo.git
.git/configを変更してsvn-remoteリポジトリの指定を追加。
fetch = ~ の部分でsvn上のtrunkとgit上のmasterを紐付ける
.git/config
[svn-remote "svn"]
url = http://svn.example.com/oldrepo
fetch = trunk:refs/heads/master
svnからfetchする。これでhistoryが取り込める。
git svn fetch
リモートのgitリポジトリにpushする
git push origin master
Author And Source
この問題について(subversionのtrunkのhistoryをgitのmasterブランチに移す方法), 我々は、より多くの情報をここで見つけました https://qiita.com/semind/items/66ebaba2d1b32766fe79著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .