For a project I have been maintaining the versions in Fossil SCM
. Now I want to move it to GitHub. So I did the following steps as referenced in the below URLs.
I created a repository on GitHub 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 this when I view in GitHub
, I see only one commit, but I have almost 30 commits in Fossil SCM
. I need to get all the commits. How can I do that?
Reference URLs: * Fossil Export to Git * GitHub import existing project