-
I'm getting a
My git repository contains a single I'm aware that BTW, I also asked this on Stack Overflow: How do I resolve "File renaming caused colliding pathnames!" from git filter-repo --path-rename? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It turns out that tracing the
Based on this, I'm not sure if there is a general way to resolve the |
Beta Was this translation helpful? Give feedback.
It turns out that tracing the
git-repo-filter
code wasn't as hard as I expected. I found thatFile renaming caused colliding pathnames!
fromgit filter-repo --path-rename <old-path>:<new-path>
occurs when there's a commit in the commit history in which<old-path
and<new-path>
<new-path>
is not a delete<old-path>
and<new-path>
are not identicalBased on this, I'm not sure if there is a general way to resolve the
File renaming caused colliding pathnames!
error.