Migrating from Fossil SCM to GitHub

For the project, I maintained versions in Fossil SCM

. Now I want to move it to GitHub. So I did the following steps given in the urls below.

I created a GitHub repository without readme, license and .gitignore and issued the following commands.

git init
git add *
fossil export --git repo.fossil | git fast-import
git remote add origin github_repo_url.git
git remote -v
git push origin mast

      

After that, when I see in GitHub

, I only see one commit, but I have almost 30 commits in Fossil SCM

. I need to get all the commits. How can i do this?

Approximate URLs: * Export Fossil to Git  * GitHub imports an existing project

+3


source to share





All Articles