Created
August 2, 2016 06:55
-
-
Save arxae/7ed914e2d65414f9707e0f6945bf0de7 to your computer and use it in GitHub Desktop.
Fossil <-> Git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fossil -> Git | |
git init new-repo | |
cd new-repo | |
fossil export --git ../repo.fossil | git fast-import | |
git merge trunk | |
git branch -d trunk | |
Git -> Fossil | |
cd git-repo | |
git fast-export --all | fossil import --git new-repo.fossil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment