* Could git status know about -M ?
@ 2007-03-30 0:09 Olivier Galibert
2007-03-30 4:19 ` Jeff King
0 siblings, 1 reply; 2+ messages in thread
From: Olivier Galibert @ 2007-03-30 0:09 UTC (permalink / raw)
To: git
Right now git status shows renames only if the deleted file is
strictly identical to the added file. If you do an even minor
modification (say, change a "" include to a <> one) it becomes a
del/add pair which is way less readable. Easily fixable?
OG.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Could git status know about -M ?
2007-03-30 0:09 Could git status know about -M ? Olivier Galibert
@ 2007-03-30 4:19 ` Jeff King
0 siblings, 0 replies; 2+ messages in thread
From: Jeff King @ 2007-03-30 4:19 UTC (permalink / raw)
To: Olivier Galibert; +Cc: git
On Fri, Mar 30, 2007 at 02:09:49AM +0200, Olivier Galibert wrote:
> Right now git status shows renames only if the deleted file is
> strictly identical to the added file. If you do an even minor
> modification (say, change a "" include to a <> one) it becomes a
> del/add pair which is way less readable. Easily fixable?
It uses the same rename detection as git-diff, which computes a
similarity score. For example, try this:
$ git init
$ head -n 1000 /usr/share/dict/words >foo
$ git-add foo; git-commit -m 'added file'
$ git-mv foo bar
$ git-status ;# shows rename because files are identical
$ echo changes >>bar; git-add bar
$ git-status ;# still shows rename because files are similar
$ echo rewrite >bar; git-add bar
$ git-status ;# now files are too dissimilar to find rename
My guess is that your changes, even though they seem small, or
preventing the rename detection from working. If you have a very small
file, even a few changes can make the files too dissimilar.
-Peff
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-03-30 4:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-30 0:09 Could git status know about -M ? Olivier Galibert
2007-03-30 4:19 ` Jeff King
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).