Brief article on benchmarks of Python repository with leading DVCSen
Teemu Likonen
tlikonen at iki.fi
Thu Feb 12 15:14:45 GMT 2009
On 2009-02-12 19:23 (+0900), David Cournapeau wrote:
> To be fair, git often avoids expensive rename detection for speed
> purpose (the -C/-M option of log, blame and co); I hate that, and set
> my alias so that those are the default.
Aliases work but if you always want -M (rename) or -C (rename©) then
you can use this config:
diff.renames
Tells git to detect renames. If set to any boolean value, it
will enable basic rename detection. If set to "copies" or
"copy", it will detect copies, as well.
Here "diff" doesn't mean only "git diff" command but the whole diff
machinery.
More information about the bazaar
mailing list