vote up 5 vote down star

I've moved a file manually and then I've modified it. According to Git, it is a new file and a removed file. Is there any way to force Git into treating it as a file move?

flag

77% accept rate

5 Answers

vote up 10 vote down check

Git will automatically detect the move/rename if your modification is not too severe. Just git add the new file, and git rm the old file. git status will then show whether it has detected the rename. If it hasn’t you need to follow Hank Gay’s advice and make two separate commits.

link|flag
vote up 4 vote down

Do the move and the modify in separate commits.

link|flag
I understand that Git is can handle moves and modifications at the same time. When programming in Java and using an IDE, renaming a class is both a modification and a move. I understand that Git even should be able to automatically figure it out when there's a move (out of a remove and a creation). – J. Pablo Fernández Jan 11 '09 at 16:19
Perl requires this too, and I have never not had Git detect the move/rename. – jrockway Jan 12 '09 at 15:17
vote up 9 vote down

Its all a perceptual thing. Git is generally rather good at recognising moves, because GIT is a content tracker

All that really depends is how your "stat" displays it. The only difference here is the -M flag.

git log --stat -M

commit 9c034a76d394352134ee2f4ede8a209ebec96288
Author: Kent Fredric
Date:   Fri Jan 9 22:13:51 2009 +1300


        Category Restructure

     lib/Gentoo/Repository.pm                |   10 +++++-----
     lib/Gentoo/{ => Repository}/Base.pm     |    2 +-
     lib/Gentoo/{ => Repository}/Category.pm |   12 ++++++------
     lib/Gentoo/{ => Repository}/Package.pm  |   10 +++++-----
     lib/Gentoo/{ => Repository}/Types.pm    |   10 +++++-----
     5 files changed, 22 insertions(+), 22 deletions(-)

git log --stat

commit 9c034a76d394352134ee2f4ede8a209ebec96288
Author: Kent Fredric
Date:   Fri Jan 9 22:13:51 2009 +1300

    Category Restructure

 lib/Gentoo/Base.pm                |   36 ------------------------
 lib/Gentoo/Category.pm            |   51 ----------------------------------
 lib/Gentoo/Package.pm             |   41 ---------------------------
 lib/Gentoo/Repository.pm          |   10 +++---
 lib/Gentoo/Repository/Base.pm     |   36 ++++++++++++++++++++++++
 lib/Gentoo/Repository/Category.pm |   51 ++++++++++++++++++++++++++++++++++
 lib/Gentoo/Repository/Package.pm  |   41 +++++++++++++++++++++++++++
 lib/Gentoo/Repository/Types.pm    |   55 +++++++++++++++++++++++++++++++++++++
 lib/Gentoo/Types.pm               |   55 -------------------------------------
 9 files changed, 188 insertions(+), 188 deletions(-)

git help log

   -M
       Detect renames.

   -C
       Detect copies as well as renames. See also --find-copies-harder.
link|flag
vote up 1 vote down

git diff -M or git log -M should automatically detect such changes as a rename with minor changes as long as they indeed are. If your minor changes are not minor, you can reduce the similarity threashold, e.g.

$ git log -M20 -p --stat

to reduce it from the default 50% to 20%.

link|flag
vote up 1 vote down

This is a quick solution if you've renamed a file, made some changes to it, Git doesn't realize it's a rename, and you haven't committed your changes. Let's say the file was named 'blah' and now it's named 'foo'.

1) Rename 'foo' to a temp name:

% mv foo foo.tmp

2) Checkout 'blah':

% git checkout blah

3) Rename 'blah' to 'foo' so that Git knows about it:

% git mv blah foo

4) Now rename 'foo.tmp' back to 'foo'.

% mv foo.tmp foo

This last step is what gets your changed content back into 'foo'.

Hope that makes sense.

link|flag
This process serves no purpose. git doesn't add any metadata for renames, git mv is simply a convenience for a git rm/git add pair. If you've already done 'mv bar foo', then all you have to do is make sure that you've git add foo and git rm bar before making the commit. This could be as done as a single git add -A command, or possibly a git add foo; git commit -a sequence. – Charles Bailey Oct 9 at 6:48
All I know is that before I did it, Git didn't recognize it as a move. After I did this, Git recognized it as a move. – cully Oct 15 at 0:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.