Reputation: 34145
I created a mirror of an svn
repository via git-svn
. The first time I did fetch
from svn, I got revisions 1-7001, which I pushed to the github.
Now that there are 7007 revisions in svn, I did git-svn
fetch, which appears to have downloaded the missing revisions, but:
git log
(last one is 7001)git push ... master
Is there some step I'm missing?
Upvotes: 1
Views: 90
Reputation: 8271
You need to do git-svn rebase
after your fetch to merge the changes in to your working branch.
Upvotes: 3