On 2008.04.01 14:51:47 -0600, Bob Cotton wrote: > > I've been using git-svn for several weeks. After replaying svn using > git-svn clone and git-svn fetch, all branches and tags were replicated > in the git repo. > > Now, after a workflow that includes git-svn rebase, but no git-svn > fetch(s), the new svn tags and branches are not being replicated. git svn rebase only fetches the revisions that are required to do the rebase, which speeds the process up quite a bit. Imagine you're working on branch "foo" and trunk is quite active. If git svn rebase would always fetch all the new revisions for trunk as well (which you might not need right now), that could become quite annoying. If you want all remote branches/tags (incl. trunk) to be updated, use git svn fetch. Björn -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html