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?
|
|
|
|
|
|
|
Git will automatically detect the move/rename if your modification is not too severe. Just |
||
|
|
|
|
Do the move and the modify in separate commits. |
||||
|
|
|
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
git log --stat
git help log
|
|||
|
|
|
|
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.
to reduce it from the default 50% to 20%. |
||
|
|
|
|
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:
2) Checkout 'blah':
3) Rename 'blah' to 'foo' so that Git knows about it:
4) Now rename 'foo.tmp' back to 'foo'.
This last step is what gets your changed content back into 'foo'. Hope that makes sense. |
||||
|
