I have performed SVN to GIT Migration using subgit utility and the migration went well. I have pushed the resulting bare repository to Git. After the Migration I have noticed that the total number of commits in Git Repository is just 13500 where as the last revision number is SVN is 37380.
So as my per understanding in git I need to see 37380 commits? Is my understanding correct?
Additional Note:
When compared the total commits in Git vs Total Revisions in SVN. It doesn't match. Git seems to be missing around 22125
commits (i.e 37530-15405=22125 commits). But the migration didn't give any errors. So wondering what would be wrong?
What is the best way to check what is missing in Git?
Git Total Commit Count:
$ git rev-list --all --count
15405
Total Revisions in SVN:
37530
Update 2: Subgit Verify shows everything is good
# ./subgit-3.3.15/bin/subgit verify jdmessenger.git
SubGit version 3.3.15 ('Bobique') build #4442
(c) TMate Software 2012-2021 (http://subgit.com/)
Verifying repository at '/opt/apps/jdmessenger.git'.
Subversion revisions verified: 37530
Mirror is operating normally.
# cd jdmessenger.git (Git Bare Repo)
# git rev-list --all --count (Total Commits in Bare Repo)
48425
# git clone repo_url (Total Commits in Actual Repo)
# git rev-list --all --count
15278