將 Mercurial 遷移到 Git
可以使用以下方法將 Mercurial
Repo 匯入 Git
:
- 使用快速匯出 :
cd
git clone git://repo.or.cz/fast-export.git
git init git_repo
cd git_repo
~/fast-export/hg-fast-export.sh -r /path/to/old/mercurial_repo
git checkout HEAD
-
使用 Hg-Git :這裡有一個非常詳細的答案: https : //stackoverflow.com/a/31827990/5283213
-
使用 GitHub 的匯入商 :按照在(詳細)說明 GitHub 上 。