viraptor
viraptor

Reputation: 34145

git-svn updates not visible

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:

Is there some step I'm missing?

Upvotes: 1

Views: 90

Answers (1)

Leom Burke
Leom Burke

Reputation: 8271

You need to do git-svn rebase after your fetch to merge the changes in to your working branch.

Upvotes: 3

Related Questions