I'm using #Git to work around some SVN jank, specifically I want to port a list of commits from one branch to another. I tried using `git format-patch` to "export" my commits, but it doesn't seem to consistently export the commit I tell it to?
Normally this works:
git --git-dir ~/proj/.git format-patch -1 $commitID
But for some commits, it seems to make a patch for an unrelated commit. What??




β
β
β