8

hg リポジトリを高速エクスポートし、結果を高速エクスポート互換フォーマット ファイルにダンプする方法を見つけようとしています。

基本的に、Git や Plastic SCM でできることと同じことをしたい:

git fast-export --all -C --tag-of-filtered-object=drop --signed-tags=strip > Repository.fast-exported


cm fast-export MyProject@PlasticSCMServer:8087 Repository.fast-exported

hg-fast-export.py ツール ( http://hedonismbot.wordpress.com/2008/10/16/hg-fast-export-convert -mercurial-repositories-to-git-repositories/)ですが、ダンプファイルを作成できるかどうか疑問に思っています。

4

1 に答える 1

2

このプロジェクトを見たことがありますか?このスクリプトは、 python スクリプトfast-export.shの出力を にパイプすることによって機能します。ダンプ ファイルを保存する場合は、同じコマンドを実行して、出力をファイルに送信するだけです。hg-fast-export.pygit fast-import

于 2012-05-14T19:43:55.757 に答える