Walter
Walter

Reputation: 1470

git svn - why can I not update to the latest revision?

I just started to use git-svn and am having a few problems. The one I can't seem to figure out is that whenever I setup my working copy, it stops a few revisions shy of the latest. For instance, there are 9094 revisions in SVN and in git, I have 9080.

git svn init http://svn.repository trunk

git svn fetch

git svn info

Thanks,

Walter

Upvotes: 0

Views: 95

Answers (1)

khmarbaise
khmarbaise

Reputation: 97359

You should use:

   git svn clone URL projectName

instead and my be you should add a -s for standard layout (trunk/tags/branches).

Upvotes: 1

Related Questions