gitweb.git
git-gui: Misc. formatting cleanups.Shawn O. Pearce Sun, 12 Nov 2006 00:40:33 +0000 (19:40 -0500)

git-gui: Misc. formatting cleanups.

A number of lines were line wrapping in a rather ugly way when opened
in vim with line numbers enabled, so I split most of these lines over
two lines using a sensible wrapping policy.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Simplified format of geometry configuration.Shawn O. Pearce Sun, 12 Nov 2006 00:32:24 +0000 (19:32 -0500)

git-gui: Simplified format of geometry configuration.

The gui.geometry config value was starting to contain
the odd string \\{ as part of its value due to the
way the Tcl lists were being supplied to git repo-config.

Now we write out only three values: the overall window
geomtry, the y position of the horizontal sash, and
the x position of the vertical sash. All other data is
skipped, which makes the gui.geometry value simpler.

While debugging this I noticed that the save_my_config
procedure was being invoked multiple times during exit
due to do_quit getting invoked over and over again. So
now we set a flag in do_quit and don't perform any of our
"at exit" type of logic if we've already been through the
do_quit procedure once.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Cleaned up error message formatting.Shawn O. Pearce Sun, 12 Nov 2006 00:10:10 +0000 (19:10 -0500)

git-gui: Cleaned up error message formatting.

Added an extra blank line between the first line of each error message
and the rest of the message, as usually the rest of the message is
coming from Tcl or is the stderr output of a git command we tried to
invoke. This makes it easier to read the output (if any).

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Use native tk_messageBox for errors.Shawn O. Pearce Sun, 12 Nov 2006 00:03:06 +0000 (19:03 -0500)

git-gui: Use native tk_messageBox for errors.

Rather than drawing our own toplevel for error messages we really
should just use the the native tk_messageBox command to display
any error messages.

Major benefits for doing so are:
- automatically centers over main window;
- less code required on our part in git-gui;
- includes a nifty error icon on most systems;
- better fits the look-and-feel of the operating system.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Rename difffont/mainfont variables.Shawn O. Pearce Sat, 11 Nov 2006 23:46:52 +0000 (18:46 -0500)

git-gui: Rename difffont/mainfont variables.

I found difffont to be a very awkward varible name, due to the use
of three f's in a row. So use easier to read variable names.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Use catch rather than array names to check... Shawn O. Pearce Sat, 11 Nov 2006 23:42:42 +0000 (18:42 -0500)

git-gui: Use catch rather than array names to check file.

When we reshow the current diff file it can be faster to just fetch
the value from the file_states array than it is to ask for all paths
whose name exactly matches the one we want to show. This is because
[array names -exact] is O(n) in the number of files.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Efficiently update the UI after committing.Shawn O. Pearce Sat, 11 Nov 2006 23:38:00 +0000 (18:38 -0500)

git-gui: Efficiently update the UI after committing.

When we commit we know that whatever was in the index went as part
of the commit. Since we generally assume that the user does not
update the index except through our user interface we can be reasonably
certain that any file which was marked as A/M/D in the index will have
had that A/M/D state changed to an _ (not different) by the commit.

We can use this knowledge to update the user interface post commit
by simply updating the index part of the file state of all files whose
index state was A/M/D to _ and then removing any file memory any which
wound up with a final state of __ (not different anywhere). Finally we
redraw the file lists and update the diff view.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Correctly handle files containing LF in their... Shawn O. Pearce Sat, 11 Nov 2006 22:59:34 +0000 (17:59 -0500)

git-gui: Correctly handle files containing LF in their name.

If we are given a file whose path name contains an LF (\n) we now
escape it by inserting the common escape string \n instead of the
LF character whenever we display the name in the UI. This way the
text fields don't start to span multiple lines just to display one
file, and it keeps the line numbers correct within the file lists.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Always indicate the file in the diff viewer.Shawn O. Pearce Sat, 11 Nov 2006 22:52:16 +0000 (17:52 -0500)

git-gui: Always indicate the file in the diff viewer.

When we did a rescan to update the file lists we lost the tag which
indicated which file was currently in the diff viewer. This occurs
because we delete every line from the two file list boxes (thus
removing the tag) and then redisplay the diff in the diff viewer
but then fail to restore the tag in the file list.

Now we restore that tag by searching for the file in the file lists
and adding the tag back when the diff viewer displays something.

We also no longer obtain the file path directly from the file list
text box. Instead we now keep two Tcl lists, one for each file list,
holding the file names in sorted order. These lists can be searched
with the native [lsearch -sorted] operation (which should be faster
than our crude bsearch) or can be quickly accessed by index to return
the file path. This should help make things safer should we ever be
given a file name which contains an LF within it (as that would span
two lines in the file list, not one).

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Updated TODO list now that geometry is stored.Shawn O. Pearce Sat, 11 Nov 2006 22:46:04 +0000 (17:46 -0500)

git-gui: Updated TODO list now that geometry is stored.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Clear undo/redo stack when loading a message... Shawn O. Pearce Sat, 11 Nov 2006 21:16:25 +0000 (16:16 -0500)

git-gui: Clear undo/redo stack when loading a message file from disk.

If we load a message file (e.g. MERGE_MSG) or we have just finished
making a commit and are clearing out the commit buffer we should also
clear out the undo/redo stack associated with that buffer. The prior
undo/redo stack has no associated with the new content and therefore
is not useful to the user.

Also modified the sign-off operation to perform the entire update in
a single undo/redo operation, allowing the user to undo the signoff
in case they didn't actually want to do that.

I also noticed what may be a crash on Windows related to the up and
down arrow keys navigating within the diff viewer. Since I got back
no stack trace (just an application exit with a loss of the commit
message) I suspect that the binding to scroll the text widget crashed
with an error and the wish process just terminated. So now we catch
(and ignore) any sort of error related to the arrow keys in the diff
viewer.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Created edit menu and basic editing bindings.Shawn O. Pearce Sat, 11 Nov 2006 20:51:41 +0000 (15:51 -0500)

git-gui: Created edit menu and basic editing bindings.

Users have come to expect basic editing features within their
applications, such as cut/copy/paste/undo/redo/select-all. I
found these features to be lacking in git-gui so now we have
them.

I also added basic keyboard bindings for the diff viewing area
so that the arrow keys move around single units (lines or columns)
and the M1-X/C keys will copy the selected text and the M1-A key
will select the entire diff.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Change accelerator for "Include All" to M1-I.Shawn O. Pearce Sat, 11 Nov 2006 20:16:01 +0000 (15:16 -0500)

git-gui: Change accelerator for "Include All" to M1-I.

Now that we call the update-index all files action "Include All" it
makes more sense to make this M1-I (so Control-I or Command-I depending
on platform) than M1-U, which stood for update but is somewhat confusing
to users.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

GIT 1.4.4-rc2 v1.4.4-rc2Junio C Hamano Sun, 12 Nov 2006 02:22:31 +0000 (18:22 -0800)

GIT 1.4.4-rc2

Signed-off-by: Junio C Hamano <junkio@cox.net>

Merge branch 'maint'Junio C Hamano Sun, 12 Nov 2006 02:30:31 +0000 (18:30 -0800)

Merge branch 'maint'

* maint:
git-cvsserver: read from git with -z to get non-ASCII pathnames.

git-cvsserver: read from git with -z to get non-ASCII... v1.4.3.5Junio C Hamano Fri, 10 Nov 2006 19:53:41 +0000 (11:53 -0800)

git-cvsserver: read from git with -z to get non-ASCII pathnames.

Signed-off-by: Junio C Hamano <junkio@cox.net>

Merge branch 'maint'Junio C Hamano Sat, 11 Nov 2006 22:49:25 +0000 (14:49 -0800)

Merge branch 'maint'

* maint:
path-list: fix path-list-insert return value

path-list: fix path-list-insert return valueJunio C Hamano Sat, 11 Nov 2006 22:45:35 +0000 (14:45 -0800)

path-list: fix path-list-insert return value

When path-list-insert is called on an existing path, it returned an
unrelated element in the list. Luckily most of the callers are
ignoring the return value, but merge-recursive uses it at three places
and this would have resulted in a bogus rename detection.

Signed-off-by: Junio C Hamano <junkio@cox.net>

git-annotate: fix -S on graft file with comments.Junio C Hamano Fri, 10 Nov 2006 21:39:01 +0000 (13:39 -0800)

git-annotate: fix -S on graft file with comments.

The graft file can contain comment lines and read_graft_line can
return NULL for such an input, which should be skipped by the
reader.

Signed-off-by: Junio C Hamano <junkio@cox.net>

git-annotate: no need to exec blame; it is built-in... Junio C Hamano Fri, 10 Nov 2006 21:36:44 +0000 (13:36 -0800)

git-annotate: no need to exec blame; it is built-in now.

Merge branch 'maint'Junio C Hamano Thu, 9 Nov 2006 23:08:19 +0000 (15:08 -0800)

Merge branch 'maint'

* maint:
git-rebase: Use --ignore-if-in-upstream option when executing git-format-patch.
git-svn: fix dcommit losing changes when out-of-date from svn
git-svn: don't die on rebuild when --upgrade is specified
git-svn: avoid printing filenames of files we're not tracking

git-rebase: Use --ignore-if-in-upstream option when... Robert Shearman Tue, 3 Oct 2006 16:29:26 +0000 (17:29 +0100)

git-rebase: Use --ignore-if-in-upstream option when executing git-format-patch.

This reduces the number of conflicts when rebasing after a series of
patches to the same piece of code is committed upstream.

Signed-off-by: Robert Shearman <rob@codeweavers.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Documentation: move blame examplesJunio C Hamano Thu, 9 Nov 2006 18:44:56 +0000 (10:44 -0800)

Documentation: move blame examples

This moves the example to specify a line range with regexps to
a later part of the manual page that has similar examples.

Signed-off-by: Junio C Hamano <junkio@cox.net>

Merge branch 'maint'Junio C Hamano Thu, 9 Nov 2006 17:40:59 +0000 (09:40 -0800)

Merge branch 'maint'

* maint:
Nicer error messages in case saving an object to db goes wrong

git-svn: fix dcommit losing changes when out-of-date... Eric Wong Thu, 9 Nov 2006 09:19:37 +0000 (01:19 -0800)

git-svn: fix dcommit losing changes when out-of-date from svn

There was a bug in dcommit (and commit-diff) which caused deltas
to be generated against the latest version of the changed file
in a repository, and not the revision we are diffing (the tree)
against locally.

This bug can cause recent changes to the svn repository to be
silently clobbered by git-svn if our repository is out-of-date.

Thanks to Steven Grimm for noticing the bug.

The (few) people using the commit-diff command are now required
to use the -r/--revision argument. dcommit usage is unchanged.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>

git-svn: don't die on rebuild when --upgrade is specifiedEric Wong Sun, 5 Nov 2006 05:51:11 +0000 (21:51 -0800)

git-svn: don't die on rebuild when --upgrade is specified

--copy-remote and --upgrade are rarely (never?) used together,
so if --copy-remote is specified, that means the user really
wanted to copy the remote ref, and we should fail if that fails.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>

git-svn: avoid printing filenames of files we're not... Eric Wong Sun, 5 Nov 2006 05:51:10 +0000 (21:51 -0800)

git-svn: avoid printing filenames of files we're not tracking

This is purely an aesthetic change, we already skip importing of
files that don't affect the subdirectory we import.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Nicer error messages in case saving an object to db... Petr Baudis Thu, 9 Nov 2006 12:52:05 +0000 (13:52 +0100)

Nicer error messages in case saving an object to db goes wrong

Currently the error e.g. when pushing to a read-only repository is quite
confusing, this attempts to clean it up, unifies error reporting between
various object writers and uses error() on couple more places.

Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>

gitweb: fix unmatched div in commitdiffJunio C Hamano Thu, 9 Nov 2006 10:33:35 +0000 (02:33 -0800)

gitweb: fix unmatched div in commitdiff

When the last filepair changed only metainfo we failed to close the
extended header <div>.

Signed-off-by: Junio C Hamano <junkio@cox.net>

gitweb: protect commit messages from controls.Junio C Hamano Thu, 9 Nov 2006 08:57:13 +0000 (00:57 -0800)

gitweb: protect commit messages from controls.

The same change as the previous. It is rather sad that commit log
message parser gives list of chomped lines while tag message parser
gives unchomped ones.

Signed-off-by: Junio C Hamano <junkio@cox.net>

gitweb: protect blob and diff output lines from controls.Junio C Hamano Wed, 8 Nov 2006 23:11:10 +0000 (15:11 -0800)

gitweb: protect blob and diff output lines from controls.

This revealed that the output from blame and tag was not chomped
properly and was relying on HTML output not noticing that extra
whitespace that resulted from the newline, which was also fixed.

Signed-off-by: Junio C Hamano <junkio@cox.net>

git-gui: Save window geometry to .git/config during... Shawn O. Pearce Thu, 9 Nov 2006 04:42:51 +0000 (23:42 -0500)

git-gui: Save window geometry to .git/config during exit.

I started to find it very annoying that my test application kept
opening at the wrong location on my desktop, so now we save the
basic window geometry and sash positions into the config file as
gui.geometry.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Cache the GIT_COMMITTER_IDENT value on first... Shawn O. Pearce Thu, 9 Nov 2006 04:05:46 +0000 (23:05 -0500)

git-gui: Cache the GIT_COMMITTER_IDENT value on first sign-off.

Caching the Signed-Off-By line isn't very important (as its not
performance critical). The major improvement here is that we
now report an error to the user if we can't obtain their name
from git-var.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Show only the abbreviated SHA1 after committing.Shawn O. Pearce Thu, 9 Nov 2006 03:51:09 +0000 (22:51 -0500)

git-gui: Show only the abbreviated SHA1 after committing.

There's really no great reason to show the entire commit object id
within the GUI, especially if the user is unable to copy and paste
it into another interface such as gitk or a terminal window. So
we'll just show them the first 8 digits and hope that is unique
within their repository.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Changed term 'check-in' to 'include'.Shawn O. Pearce Thu, 9 Nov 2006 03:48:34 +0000 (22:48 -0500)

git-gui: Changed term 'check-in' to 'include'.

At least one user was confused by the term 'check-in'; he thought that
clicking that button would commit just that one file, but he wanted to
include all modified files into his next commit.

Since git doesn't really have a check-in concept this really was poor
language to use. Git does have an update-index concept but that is a
little too low level to show to the user.

So instead we now talk about including files in a commit.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-pickaxe: retire pickaxeJunio C Hamano Thu, 9 Nov 2006 02:47:54 +0000 (18:47 -0800)

git-pickaxe: retire pickaxe

Just make it take over blame's place. Documentation and command
have all stopped mentioning "git-pickaxe". The built-in synonym
is left in the command table, so you can still say "git pickaxe",
but it probably is a good idea to retire it as well.

Signed-off-by: Junio C Hamano <junkio@cox.net>

Merge git://git.kernel.org/pub/scm/gitk/gitkJunio C Hamano Wed, 8 Nov 2006 21:43:08 +0000 (13:43 -0800)

Merge git://git.kernel.org/pub/scm/gitk/gitk

* git://git.kernel.org/pub/scm/gitk/gitk:
[PATCH] gitk: Fix nextfile() and add prevfile()

git-status: quote LF in its outputJunio C Hamano Wed, 8 Nov 2006 21:20:46 +0000 (13:20 -0800)

git-status: quote LF in its output

Otherwise, commit log template would get the remainder of the
filename start on a new line unquoted and the log gets messed
up.

I initially considered using the full quote_c_style(), but the
output from the command is primarily for human consumption so
chose to leave other control characters and bytes with high-bits
unmolested.

Signed-off-by: Junio C Hamano <junkio@cox.net>

gitweb: do not give blame link unconditionally in diff... Junio C Hamano Wed, 8 Nov 2006 20:22:04 +0000 (12:22 -0800)

gitweb: do not give blame link unconditionally in diff-tree view

Signed-off-by: Junio C Hamano <junkio@cox.net>

gitweb: New improved patchset viewJakub Narebski Wed, 8 Nov 2006 16:59:41 +0000 (17:59 +0100)

gitweb: New improved patchset view

Replace "gitweb diff header" with its full sha1 of blobs and replace
it by "git diff" header and extended diff header. Change also somewhat
highlighting of diffs.

Added `file_type_long' subroutine to convert file mode in octal to
file type description (only for file modes which used by git).

Changes:
* "gitweb diff header" which looked for example like below:
file:_<sha1 before>_ -> file:_<sha1 after>_
where 'file' is file type and '<sha1>' is full sha1 of blob is
changed to
diff --git _a/<file before>_ _b/<file after>_
In both cases links are visible and use default link style. If file
is added, a/<file> is not hyperlinked. If file is deleted, b/<file>
is not hyperlinked.
* there is added "extended diff header", with <path> and <hash>
hyperlinked (and <hash> shortened to 7 characters), and <mode>
explained: '<mode>' is extended to '<mode> (<file type description>)',
where added text is slightly lighter to easy distinguish that it
was added (and it is difference from git-diff output).
* from-file/to-file two-line header lines have slightly darker color
than removed/added lines.
* chunk header has now delicate line above for easier finding chunk
boundary, and top margin of 2px, both barely visible.

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

gitweb: Use character or octal escape codes (and add... Jakub Narebski Wed, 8 Nov 2006 10:50:07 +0000 (11:50 +0100)

gitweb: Use character or octal escape codes (and add span.cntrl) in esc_path

Instead of simply hiding control characters in esc_path by replacing
them with '?', use Character Escape Codes (CEC) i.e. alphabetic
backslash sequences like those found in C programming language and
many other languages influenced by it, such as Java and Perl. If
control characted doesn't have corresponding character escape code,
use octal char sequence to escape it.

Alternatively, controls can be replaced with Unicode Control
Pictures U+2400 - U+243F (9216 - 9279), the Unicode characters
reserved for representing control characters when it is
necessary to print or display them.

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

gitweb: Better git-unquoting and gitweb-quoting of... Jakub Narebski Wed, 8 Nov 2006 10:48:56 +0000 (11:48 +0100)

gitweb: Better git-unquoting and gitweb-quoting of pathnames

Extend unquote subroutine, which unquotes quoted and escaped filenames
which git may return, to deal not only with octal char sequence
quoting, but also quoting ordinary characters including '\"' and '\\'
which are respectively quoted '"' and '\', and to deal also with
C escape sequences including '\t' for TAB and '\n' for LF.

Add esc_path subroutine for gitweb quoting and HTML escaping filenames
(currently it does equivalent of ls' --hide-control-chars, which means
showing undisplayable characters (including '\n' and '\t') as '?'
(question mark) character, and use 'span' element with cntrl CSS class
to help rendering them differently.

Convert gitweb to use esc_path correctly to print pathnames.

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

gitweb: minimally fix "fork" support.Junio C Hamano Wed, 8 Nov 2006 06:37:17 +0000 (22:37 -0800)

gitweb: minimally fix "fork" support.

A forked project is defined to be $projname/$forkname.git for
$projname.git; the code did not check this correctly and mistook
$projname/.git to be a fork of itself. This minimally fixes the
breakage.

Also forks were not checked when index.aux file was in use.
Listing the forked ones in index.aux would show them also on the
toplevel index which may go against the hierarchical nature of
forks, but again this is a minimal fix to whip it in a better
shape suitable to be in the 'master' branch.

Signed-off-by: Junio C Hamano <junkio@cox.net>

gitweb: fix disabling of "forks"Junio C Hamano Wed, 8 Nov 2006 06:00:45 +0000 (22:00 -0800)

gitweb: fix disabling of "forks"

Apparently this code was never tested without "forks". check-feature
returns a one-element list (0) when disabled, and assigning that to a
scalar variable made it to be called in a scalar context, which meant
my $check_forks = gitweb_check_feature("forks") were always 1!

Signed-off-by: Junio C Hamano <junkio@cox.net>

git-gui: Bug fix for bad variable reference in display_... Shawn O. Pearce Wed, 8 Nov 2006 03:09:55 +0000 (22:09 -0500)

git-gui: Bug fix for bad variable reference in display_file.

When a file jumps between the file lists due to its state changing we
crashed thanks to a stale variable reference within the procedure as we
tried to setup the new icon.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Update TODO list.Shawn O. Pearce Wed, 8 Nov 2006 03:03:03 +0000 (22:03 -0500)

git-gui: Update TODO list.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Don't let the user pull into an uncommitted... Shawn O. Pearce Wed, 8 Nov 2006 03:00:38 +0000 (22:00 -0500)

git-gui: Don't let the user pull into an uncommitted working directory.

If there are modified files present in the working directory then we
should not let the user perform a pull as it may fail due to the modified
files being uncommitted but needing to be merged at the file level.

Yes there are many cases where a merge will complete successfully even
though there are modified or untracked files sitting in the working
directory. But users generally shouldn't be attempting merges like that,
and if they are they probably are advanced enough to just use the command
line and bypass this little safety check.

We also no longer run a rescan after a successful pull has completed.
Usually this is unnecessary as a successful pull won't leave modified
files laying around. Instead we just update our HEAD and PARENT values
with the new commit, if there is one.

Unfortunately this does let the user get into an insane state as there
are bugs in core Git's git-pull and git-merge programs where the exit
status is sent back as a 0 rather than non-0 when a failure is detected.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Disable pull menu items when the index is... Shawn O. Pearce Wed, 8 Nov 2006 02:43:16 +0000 (21:43 -0500)

git-gui: Disable pull menu items when the index is locked.

If we have the index locked then no pull command is allowed to proceed
(as it would fail to get the index lock itself). So disable the pull
menu items when we are doing any index based operations.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Pluralize timestamps within the options menu.Shawn O. Pearce Wed, 8 Nov 2006 02:38:22 +0000 (21:38 -0500)

git-gui: Pluralize timestamps within the options menu.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Grab the index lock while running pull.Shawn O. Pearce Wed, 8 Nov 2006 02:30:46 +0000 (21:30 -0500)

git-gui: Grab the index lock while running pull.

The user must not modify the index while a git pull operation is running,
doing so might cause problems for the merge driver and specific strategy
being used. Normally on the command line people are just really good and
don't try to run index altering operations while they are also running a
pull. But in a slick GUI like git-gui we can't trust the user quite as
much.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Allow the user to disable update-index --refre... Shawn O. Pearce Wed, 8 Nov 2006 02:27:29 +0000 (21:27 -0500)

git-gui: Allow the user to disable update-index --refresh during rescan.

On very large projects (~1000 files) on Windows systems the update-index
--refresh stage of the rescan process takes a nontrival amount of time.
If the user is generally very careful with their file modification such
that the modification timestamp of the file differs only when the content
also differs then we can skip this somewhat expensive step and go right
to the diff-index and diff-files processes.

We save the user's prefernce in the current repository if they modify the
setting during a git-gui session, but we also load it through our dump of
repo-config --list so the user could move it to their ~/.gitconfig file
if they wanted it globally disabled.

We still keep update-index --refresh enabled by default however, as most
users will probably want it.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Added repack database menu option, to invoke... Shawn O. Pearce Wed, 8 Nov 2006 01:40:35 +0000 (20:40 -0500)

git-gui: Added repack database menu option, to invoke git repack.

Most users of git-gui probably shouldn't be invoking git repack directly;
instead we should be looking at how many loose objects they have and
how many active packs they have and making the decision for them. But
that's more work to code, and there's always going to be discussion about
what is the right default threshold and how do we know that the user is
willing to do the repack when we decide its time, etc.

So instead we'll just keep it simple and offer up the menu option.

Unfortunately right now we get now progress indication back from
git-pack-objects as its being invoked not through a tty, which makes
it disable progress output and the git-repack.sh wrapper won't let us
pass through --progress.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Flip commit message buffer and diff area.Shawn O. Pearce Wed, 8 Nov 2006 01:27:46 +0000 (20:27 -0500)

git-gui: Flip commit message buffer and diff area.

Since Tk will only supply new space gained from growing the top level to
the bottom/right most widget within a panedwindow and most users will be
growing a git-gui main window for the purposes of seeing more of the
currently shown diff, flipping the order around makes Tk do what the
user wants by default.

Of course because we also removed the paned window from the commit buffer
area it is now impossible to increase the visible space for the commit
message. But I don't see this as a huge concern right now as its actually
very awkward to try and balance three paned window dividers within the
same top level window. We could always add it back if users really want
to expand the commit buffer and see more.

I also corrected a number of bugs that I accidentally introduced in the
last commit.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: More performance improvements to rescan logic.Shawn O. Pearce Wed, 8 Nov 2006 00:58:37 +0000 (19:58 -0500)

git-gui: More performance improvements to rescan logic.

Removed as much as possible from the merge_state proc, which is where
we spent most of our time before UI update. This change makes our
running time match that of git status, except that we then need about
7 additional seconds to draw 6900 files on screen.

Apparently the [array names a -exact $v] operator in Tcl is O(n) rather
than O(1), which is really quite disappointing given that each array can
only have one entry for a given value. Switching to a lookup with a
catch (whose error we ignore) runs in O(1) time and bought us most of
that improvement.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Performance improvements for large file sets.Shawn O. Pearce Wed, 8 Nov 2006 00:30:54 +0000 (19:30 -0500)

git-gui: Performance improvements for large file sets.

Loading 6900 newly added files required about 90 seconds on one system.
This is just far too long to perform a "status" type of operation.
git-status on the same system completes in just 8.2 seconds if it is
redirected to /dev/null.

Most of our performance improvement comes from moving all of the UI
updating out of the main fileevent handlers for the status process.
Instead we are only updating the file_states array and then only doing
the UI update when all states are known and have been finally determined.

The rescan execution is now down to almost 30 seconds for the same case,
a good (but not really all that impressive) improvement.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Corrected diff-index/diff-files protocol parsi... Shawn O. Pearce Tue, 7 Nov 2006 23:34:09 +0000 (18:34 -0500)

git-gui: Corrected diff-index/diff-files protocol parsing errors.

When we were receiving a lot of output from diff-index we split records
at the wrong locations and started using the file status information
(mode and SHA1s) as path names, and then proceeded to try to use part
of the path names as status data. This caused all sorts of havoc.

So I rewrote the parsing implementation to scan for the pair of null
bytes along the buffer and stop scanning (waiting for more data) if
both can't be found during this event. This seems to work well under
high load (like when processing 6,983 added files).

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

GIT 1.4.3-rc1 v1.4.4-rc1Junio C Hamano Wed, 8 Nov 2006 00:36:11 +0000 (16:36 -0800)

GIT 1.4.3-rc1

Signed-off-by: Junio C Hamano <junkio@cox.net>

Merge branch 'maint'Junio C Hamano Wed, 8 Nov 2006 00:34:30 +0000 (16:34 -0800)

Merge branch 'maint'

* maint:
remove an unneeded test

Merge branch 'jc/pickaxe'Junio C Hamano Wed, 8 Nov 2006 00:33:59 +0000 (16:33 -0800)

Merge branch 'jc/pickaxe'

git-pickaxe: allow "-L <something>,+N"Junio C Hamano Wed, 8 Nov 2006 00:20:02 +0000 (16:20 -0800)

git-pickaxe: allow "-L <something>,+N"

With this,

git pickaxe -L '/--progress/,+20' v1.4.0 -- pack-objects.c

gives you 20 lines starting from the first occurrence of
'--progress' in pack-objects, digging from v1.4.0 version.

You can also say

git pickaxe -L '/--progress/,-5' v1.4.0 -- pack-objects.c

Signed-off-by: Junio C Hamano <junkio@cox.net>

git-pack-objects progress flag documentation and cleanupNicolas Pitre Tue, 7 Nov 2006 15:51:23 +0000 (10:51 -0500)

git-pack-objects progress flag documentation and cleanup

This adds documentation for --progress and --all-progress, remove a
duplicate --progress handling and make usage string more readable.

Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

remove an unneeded testTero Roponen Tue, 7 Nov 2006 10:44:33 +0000 (12:44 +0200)

remove an unneeded test

In wt-status.c there is a test which does nothing.
This patch removes it.

Signed-off-by: Tero Roponen <teanropo@jyu.fi>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Merge branch 'jc/read-tree'Junio C Hamano Tue, 7 Nov 2006 23:41:34 +0000 (15:41 -0800)

Merge branch 'jc/read-tree'

* jc/read-tree:
t6022: ignoring untracked files by merge-recursive when they do not matter
merge-recursive: adjust to loosened "working file clobbered" check
merge-recursive: make a few functions static.
merge-recursive: use abbreviated commit object name.
merge: loosen overcautious "working file will be lost" check.

Merge branch 'np/index-pack'Junio C Hamano Tue, 7 Nov 2006 23:39:56 +0000 (15:39 -0800)

Merge branch 'np/index-pack'

* np/index-pack:
remove .keep pack lock files when done with refs update
have index-pack create .keep file more carefully
improve fetch-pack's handling of kept packs
git-fetch can use both --thin and --keep with fetch-pack now
Teach receive-pack how to keep pack files based on object count.
Allow pack header preprocessing before unpack-objects/index-pack.
Remove unused variable in receive-pack.
Revert "send-pack --keep: do not explode into loose objects on the receiving end."
missing small substitution
Teach git-index-pack how to keep a pack file.
Only repack active packs by skipping over kept packs.
Allow short pack names to git-pack-objects --unpacked=.
send-pack --keep: do not explode into loose objects on the receiving end.
index-pack: minor fixes to comment and function name
enhance clone and fetch -k experience
mimic unpack-objects when --stdin is used with index-pack
add progress status to index-pack
make index-pack able to complete thin packs.
enable index-pack streaming capability

git-gui: Updated TODO list now that pull is starting... Shawn O. Pearce Tue, 7 Nov 2006 10:06:40 +0000 (05:06 -0500)

git-gui: Updated TODO list now that pull is starting to work.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Added support for pulling from default branch... Shawn O. Pearce Tue, 7 Nov 2006 10:02:15 +0000 (05:02 -0500)

git-gui: Added support for pulling from default branch of a remote.

We now create one menu entry per remote listing the first Pull: or fetch
entry associated with that remote as the branch to pull into the current
branch.

This is actually quite incorrect as we should be using the default
remote branch name listed in branch.<name>.merge for a new-style remote
described in the config file. But its a good default to get started with.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Cache all repo-config data in an array.Shawn O. Pearce Tue, 7 Nov 2006 09:26:02 +0000 (04:26 -0500)

git-gui: Cache all repo-config data in an array.

We're likely going to need key/value pairs from the repo-config beyond
just remote.*.url, so cache them all up front into a Tcl array where we
have fast access to them without needing to refork a repo-config --list
process.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Automatically reopen any console closed by... Shawn O. Pearce Tue, 7 Nov 2006 09:19:49 +0000 (04:19 -0500)

git-gui: Automatically reopen any console closed by the user.

If the user closes a console and we get more ouptut for it then we
will get a Tcl error in the readable event handle for the file channel.
Since this loses the actual output and is quite unfriendly to the end
user instead reopen any console which the user closed prior to the
additional output arriving.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Last minute idea about fetch shortcuts.Shawn O. Pearce Tue, 7 Nov 2006 08:30:26 +0000 (03:30 -0500)

git-gui: Last minute idea about fetch shortcuts.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Added current TODO list.Shawn O. Pearce Tue, 7 Nov 2006 08:18:34 +0000 (03:18 -0500)

git-gui: Added current TODO list.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Don't complain if no .git/remotes exist.Shawn O. Pearce Tue, 7 Nov 2006 08:00:20 +0000 (03:00 -0500)

git-gui: Don't complain if no .git/remotes exist.

The user might be using the new style config syntax remote.name.url
rather than the older standalone remote file.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Check for fetch or push command failure and... Shawn O. Pearce Tue, 7 Nov 2006 07:57:46 +0000 (02:57 -0500)

git-gui: Check for fetch or push command failure and denote it.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Correctly handle CR vs. LF within the console... Shawn O. Pearce Tue, 7 Nov 2006 07:18:18 +0000 (02:18 -0500)

git-gui: Correctly handle CR vs. LF within the console of fetch.

Because the remote end is likely to send us progress meters by
resetting each line with a CR (and no LF) we should display those
meters by replacing the last line of text with the next line,
just like a normal xterm would do.

This makes the output of fetch look about the same as if we ran it
from within an xterm.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Fix menu item accelerator display on Mac OS X.Shawn O. Pearce Tue, 7 Nov 2006 05:53:39 +0000 (00:53 -0500)

git-gui: Fix menu item accelerator display on Mac OS X.

Apparently accelerators really only work correctly for function keys
(F1-F12) and "Cmd-q". Apparently wish on Mac OS X reports itself
as unix and the OS is Darwin, this makes it a little difficult to
be sure we are running under Aqua.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Reorganized startup procedure to ensure gitdir... Shawn O. Pearce Tue, 7 Nov 2006 05:20:56 +0000 (00:20 -0500)

git-gui: Reorganized startup procedure to ensure gitdir is right.

Because we cd after getting the cdup value from Git we can't try
to get the gitdir until after we perform the cd, as usually the
gitdir is relative to the current working directory.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Worked around environment variable problems... Shawn O. Pearce Tue, 7 Nov 2006 04:47:05 +0000 (23:47 -0500)

git-gui: Worked around environment variable problems on Windows.

Apparently the Cygwin tclsh/wish executables don't pass the environment
that they inherited onto any children that they invoke. This causes a
problem for some users during 'git fetch' or 'git push' as critical
environment variables like GIT_SSH and SSH_AUTH_SOCK aren't available
to the git processes.

So we work around this by forcing sh to start a login shell, thus
reloading the user's environment, then cd to the current directory,
and finally start the requested process. Of course this won't
correctly handle any transient environment variables that were
inherited but were not supplied by the user's login shell.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Started construction of fetch and push operations.Shawn O. Pearce Tue, 7 Nov 2006 04:13:23 +0000 (23:13 -0500)

git-gui: Started construction of fetch and push operations.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Misc. nit type of bug fixes.Shawn O. Pearce Tue, 7 Nov 2006 03:03:05 +0000 (22:03 -0500)

git-gui: Misc. nit type of bug fixes.

* Make sure we are in the top level working directory. This
way we can access files using their repository path.

* Reload the diff viewer if the current file's status has changed;
as the diff may now be different.

* Correctly handle the 'AD' file state: added but now gone from
the working directory.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Implemented amended commits.Shawn O. Pearce Tue, 7 Nov 2006 02:34:10 +0000 (21:34 -0500)

git-gui: Implemented amended commits.

Also fixed a bug related that caused a crash if the file currently
in the diff viewer is no longer modified after the commit.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Finished commit implementation.Shawn O. Pearce Tue, 7 Nov 2006 01:50:59 +0000 (20:50 -0500)

git-gui: Finished commit implementation.

We can now commit any type of commit (initial, normal or merge) using
the same techniques as git-commit.sh does for these types of things.

If invoked as git-citool we run exit immediately after the commit was
finished. If invoked as git-gui then we stay running.

Also fixed a bug which caused the commit message buffer to be lost
when the application shutdown and restarted.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Verify we should actually perform a commit... Shawn O. Pearce Tue, 7 Nov 2006 01:03:36 +0000 (20:03 -0500)

git-gui: Verify we should actually perform a commit when asked to do so.

A user shouldn't perform a commit if any of the following are true:

* The repository state has changed since the last rescan.
* There are no files updated in the index to commit.
* There are unmerged stages still in the index.
* The commit message has not been provided.
* The pre-commit hook is executable and declined.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Corrected keyboard bindings on Windows, improv... Shawn O. Pearce Tue, 7 Nov 2006 00:12:58 +0000 (19:12 -0500)

git-gui: Corrected keyboard bindings on Windows, improved state management.

When we are refreshing from the index or updating the index we shouldn't
let the user cause other index based operations to occur as these would
likely conflict with the currently running operations possibly causing
some index changes to be lost.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Fixed UI layout problems on Windows.Shawn O. Pearce Mon, 6 Nov 2006 23:22:19 +0000 (18:22 -0500)

git-gui: Fixed UI layout problems on Windows.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

Merge branch 'maint'Junio C Hamano Tue, 7 Nov 2006 06:56:07 +0000 (22:56 -0800)

Merge branch 'maint'

* maint:
Documentation: Transplanting branch with git-rebase --onto
merge-recursive implicitely depends on trust_executable_bit
adjust_shared_perm: chmod() only when needed.
Fix git-runstatus for repositories containing a file named HEAD

git-pickaxe: -L /regexp/,/regexp/Junio C Hamano Tue, 7 Nov 2006 01:08:32 +0000 (17:08 -0800)

git-pickaxe: -L /regexp/,/regexp/

With this change, you can specify the beginning and the ending
line of the range you wish to inspect with pattern matching.

For example, these are equivalent with the git.git sources:

git pickaxe -L 7,21 v1.4.0 -- commit.c
git pickaxe -L '/^struct sort_node/,/^}/' v1.4.0 -- commit.c
git pickaxe -L '7,/^}/' v1.4.0 -- commit.c
git pickaxe -L '/^struct sort_node/,21' v1.4.0 -- commit.c

Signed-off-by: Junio C Hamano <junkio@cox.net>

Documentation: Transplanting branch with git-rebase... Jakub Narebski Mon, 6 Nov 2006 18:12:45 +0000 (19:12 +0100)

Documentation: Transplanting branch with git-rebase --onto

Added example of transplantig feature branch from one development
branch (for example "next") into the other development branch (for
example "master").

[jc: talking Carl's advice this contains both examples sent to
the list by Jakub in his original message.]

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

git-gui: Additional early feature development.Shawn O. Pearce Mon, 6 Nov 2006 21:07:32 +0000 (16:07 -0500)

git-gui: Additional early feature development.

* Run refresh before diff-index.
* Load saved commit message during rescan.
* Save current commit message (if any) during quit.
* Add Signed-off-by line to commit buffer.
* Batch update-index invocations through --stdin.
* Better highlight which file is in the diff viewer.
* Key bindings for signoff, check-in all and commit.
* Improved formatting of status table within source.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

git-gui: Initial revision.Shawn O. Pearce Mon, 6 Nov 2006 19:20:27 +0000 (14:20 -0500)

git-gui: Initial revision.

This is based on Paul Mackerras' gitool prototype which he offered up
to the community earlier in 2006. Its mostly however a rewrite from
scratch of a Tcl/Tk based graphical interface for Git and the most
common commands users might need to perform.

Currently it can display the status of the current repository, and not
much else.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

Document git-pack-refs and link it to git(7).Junio C Hamano Mon, 6 Nov 2006 08:28:52 +0000 (00:28 -0800)

Document git-pack-refs and link it to git(7).

Signed-off-by: Junio C Hamano <junkio@cox.net>

merge-recursive implicitely depends on trust_executable_bitAlex Riesen Mon, 6 Nov 2006 10:38:52 +0000 (11:38 +0100)

merge-recursive implicitely depends on trust_executable_bit

Read the configuration in to get core.filemode value for this
particular repository.

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

adjust_shared_perm: chmod() only when needed.Junio C Hamano Sat, 4 Nov 2006 20:24:05 +0000 (12:24 -0800)

adjust_shared_perm: chmod() only when needed.

When widening permission for files and directories in a 'shared'
repository for a user with inappropriate umask() setting for
shared work, make sure we call chmod() only when we actually
need to.

The primary idea owes credit to Johannes.

Signed-off-by: Junio C Hamano <junkio@cox.net>

Fix git-runstatus for repositories containing a file... Jeff King Sun, 5 Nov 2006 22:22:15 +0000 (17:22 -0500)

Fix git-runstatus for repositories containing a file named HEAD

The wt_status_print_updated() and wt_status_print_untracked() routines
call setup_revisions() with 'HEAD' being the reference to the tip of the
current branch. However, setup_revisions() gets confused if the branch
also contains a file named 'HEAD' resulting in a fatal error.

Instead, don't pass an argv to setup_revisions() at all; simply give it no
arguments, and make 'HEAD' the default revision.

Bug noticed by Rocco Rutte <pdmef@gmx.net>.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Remove more sed invocations from within bash completion.Shawn O. Pearce Sun, 5 Nov 2006 11:25:25 +0000 (06:25 -0500)

Remove more sed invocations from within bash completion.

This change removes between 1 and 4 sed invocations per completion
entered by the user. In the case of cat-file the 4 invocations per
completion can take a while on Cygwin; running these replacements
directly within bash saves some time for the end user.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Support bash completion on symmetric difference operator.Shawn O. Pearce Sun, 5 Nov 2006 11:24:56 +0000 (06:24 -0500)

Support bash completion on symmetric difference operator.

Now that log, whatchanged, rev-list, etc. support the symmetric
difference operator '...' we should provide bash completion for it
just like we do for '..'.

While we are at it we can remove two sed invocations during the
interactive prompt and replace them with internal bash operations.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Take --git-dir into consideration during bash completion.Shawn O. Pearce Sun, 5 Nov 2006 11:21:57 +0000 (06:21 -0500)

Take --git-dir into consideration during bash completion.

If the user has setup a command line of "git --git-dir=baz" then
anything we complete must be performed within the scope of "baz"
and not the current working directory.

This is useful with commands such as "git --git-dir=git.git log m"
to complete out "master" and view the log for the master branch of
the git.git repository. As a nice side effect this also works for
aliases within the target repository, just as git would honor them.

Unfortunately because we still examine arguments by absolute position
in most of the more complex commands (e.g. git push) using --git-dir
with those commands will probably still cause completion to fail.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Bash completion support for remotes in .git/config.Shawn O. Pearce Sun, 5 Nov 2006 11:21:03 +0000 (06:21 -0500)

Bash completion support for remotes in .git/config.

Now that Git natively supports remote specifications within the
config file such as:

[remote "origin"]
url = ...

we should provide bash completion support "out of the box" for
these remotes, just like we do for the .git/remotes directory.

Also cleaned up the __git_aliases expansion to use the same form
of querying and filtering repo-config as this saves two fork/execs
in the middle of a user prompted completion. Finally also forced
the variable 'word' to be local within __git_aliased_command.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Only load .exe suffix'd completions on Cygwin.Shawn O. Pearce Sun, 5 Nov 2006 11:20:25 +0000 (06:20 -0500)

Only load .exe suffix'd completions on Cygwin.

The only platform which actually needs to define .exe suffixes as
part of its completion set is Cygwin. So don't define them on any
other platform.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Added missing completions for show-branch and merge... Shawn O. Pearce Sun, 5 Nov 2006 11:20:02 +0000 (06:20 -0500)

Added missing completions for show-branch and merge-base.

The show-branch and merge-base commands were partially supported
when it came to bash completions as they were only specified in
one form another. Now we specify them in both forms.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

git-pickaxe: optimize by avoiding repeated read_sha1_fi... Junio C Hamano Sun, 5 Nov 2006 19:51:41 +0000 (11:51 -0800)

git-pickaxe: optimize by avoiding repeated read_sha1_file().

It turns out that pickaxe reads the same blob repeatedly while
blame can reuse the blob already read for the parent when
handling a child commit when it's parent's turn to pass its
blame to the grandparent. Have a cache in the origin structure
to keep the blob there, which will be garbage collected when the
origin loses the last reference to it.

Signed-off-by: Junio C Hamano <junkio@cox.net>

git-blame: add internal statistics to count read blobs.Junio C Hamano Sun, 5 Nov 2006 19:47:53 +0000 (11:47 -0800)

git-blame: add internal statistics to count read blobs.