Git format-patch to be svn compatible?

前端 未结 8 2169
逝去的感伤
逝去的感伤 2020-12-07 08:19

Is there any way to get a patch created with git format-patch to be svn compatible so that I can submit it to an svn repo?

I\'m working off an svn repo on github and

8条回答
  •  庸人自扰
    2020-12-07 08:43

    Make sure your changes are committed and rebased on top of your local git branch, from git bash run:

    git show --pretty >> myChangesFile.patch

提交回复
热议问题