I was trying to migrate my SVN code to Github Enterprise repository.
I was following the following doc. https://docs.microsoft.com/en-us/azure/devops/repos/git/perform-migration-from-svn-to-git?view=azure-devops
everything went well and I successfully "push repository to a bare git repository" by running following commands.
cd c:\mytempdir
git remote add bare c:\new-bare.git
git config remote.bare.push refs/remotes/*:refs/heads/*
git push bare
What to do next? where can I see the this bare git repo? I did not see it at my Github enterprise site github.azc.ext.xx.com/liang-ming as new repo.
I was expecting the repo under c:\mytempdir was committed to a new repo at my Github enterprise site. How to implement this? thanks.