On 18 Oct 2007, at 11:35:00 PM, Jeff King wrote:
Right, I mean regular "mv", not "git-mv". The only thing that doesn't
accomplish is moving the "from" entry in the index to the "to" entry
(but I'm not sure that's such a good idea). Perhaps I've lost
sight of
your original goal. Can you state more succintly what you are
trying to
accomplish?
I think you're right.
Anyway, succinctly:
What you want to happen is the following:
git show HEAD:A.txt > path/B.txt
git add path/B.txt
mv A.txt B.txt
git rm A.txt
Better:
mv A.txt path/B.txt
Point the index entry for A.txt to path/B.txt
I hope that's right.
-
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