diff options
author | Alexander Gavrilov <angavrilov@gmail.com> | 2008-07-17 00:43:48 +0400 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-07-16 22:09:28 -0400 |
commit | 57cae87b77c93e8bdfd11293f11f140ff827269a (patch) | |
tree | c43ab54c9fe9a834f72841b63539955a2a81011d /git-gui.sh | |
parent | fbc0e7ac1479b4262f6090098a4f68c3438aa94b (diff) | |
download | git-57cae87b77c93e8bdfd11293f11f140ff827269a.tar.gz |
Add options to control the search for copies in blame.
On huge repositories, -C -C can be way too slow to be
unconditionally enabled, and it can also be useful to control
its precision.
Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'git-gui.sh')
-rwxr-xr-x | git-gui.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git-gui.sh b/git-gui.sh index e3b6669880..b1ed0ec568 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -642,6 +642,8 @@ set default_config(user.email) {} set default_config(gui.matchtrackingbranch) false set default_config(gui.pruneduringfetch) false set default_config(gui.trustmtime) false +set default_config(gui.fastcopyblame) false +set default_config(gui.copyblamethreshold) 40 set default_config(gui.diffcontext) 5 set default_config(gui.commitmsgwidth) 75 set default_config(gui.newbranchtemplate) {} |