I need to un-fetch some revisions from git-svn

前端 未结 3 1193
花落未央
花落未央 2021-01-02 15:30

We use svn, and I use git-svn to maintain sanity. At one point, our svn server decided to return a 403 for a certain folder. It happened to everybody, not just me.

3条回答
  •  旧时难觅i
    2021-01-02 16:04

    A better way to do this now is git svn reset -r where rev is the revision before where you want to start refetching. After that's done, just run git svn fetch and it will rebuild its index and refetch the revisions after rev.

提交回复
热议问题