gitweb.git
gitweb: Add missing show '...' links change.Robert Fitzsimons Fri, 22 Dec 2006 19:38:12 +0000 (19:38 +0000)

gitweb: Add missing show '...' links change.

Part of the patch for "gitweb: Show '...' links in "summary" view only
if there are more items" (313ce8cee665447e4476d7e8985b270346a8e5a1) is
missing. Add it back in.

Signed-off-by: Robert Fitzsimons <robfitz@273k.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Make git-show-branch options similar to git-branch.Brian Gernhardt Fri, 22 Dec 2006 13:58:39 +0000 (08:58 -0500)

Make git-show-branch options similar to git-branch.

Branch has "-r" for remote branches and "-a" for local and remote.
It seems logical to mirror that in show-branch. Also removes the
dubiously useful "--tags" option (as part of changing the meaning
for "--all").

Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Keep "git --git-dir" from causing a bus error.Brian Gernhardt Fri, 22 Dec 2006 13:56:25 +0000 (08:56 -0500)

Keep "git --git-dir" from causing a bus error.

The option checking code for --git-dir had an off by 1 error that
would cause it to access uninitialized memory if it was the last
argument. This causes it to display an error and display the usage
string instead.

Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

git-svn: enable common fetch/commit options for dcommitEric Wong Sat, 23 Dec 2006 05:59:24 +0000 (21:59 -0800)

git-svn: enable common fetch/commit options for dcommit

dcommit does commits and fetches, so all options used for those
should work, too, including --authors-file.

Reported missing by Nicolas Vilz.

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

vc-git: Ignore errors caused by a non-existent director... Alexandre Julliard Fri, 22 Dec 2006 13:56:15 +0000 (14:56 +0100)

vc-git: Ignore errors caused by a non-existent directory in vc-git-registered.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Remove NO_ACCURATE_DIFF options from build systemsEric Wong Sat, 23 Dec 2006 06:18:03 +0000 (22:18 -0800)

Remove NO_ACCURATE_DIFF options from build systems

The code no longer uses it, as we have --inaccurate-eof in
git-apply.

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

git-tag: lose exit after dieJunio C Hamano Sat, 23 Dec 2006 06:48:46 +0000 (22:48 -0800)

git-tag: lose exit after die

We are not running under /bin/resurrection shell ;-)

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

Really fix headers for __FreeBSD__Junio C Hamano Sat, 23 Dec 2006 06:46:11 +0000 (22:46 -0800)

Really fix headers for __FreeBSD__

The symbol to detect FreeBSD is __FreeBSD__, not __FreeBSD.

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

Do not support "partial URL shorthand" anymore.Junio C Hamano Fri, 22 Dec 2006 23:37:48 +0000 (15:37 -0800)

Do not support "partial URL shorthand" anymore.

We used to support specifying the top part of remote URL in
remotes and use that as a short-hand for the URL.

$ cat .git/remotes/jgarzik
URL: git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/
$ git pull jgarzik/misc-2.6

This is confusing when somebody attempts to do this:

$ git pull origin/foo

which is not syntactically correct (unless you have origin/foo.git
repository) and should fail, but it resulted in a mysterious
access to the 'foo' subdirectory of the origin repository.

Which was what it was designed to do, but because this is an
oddball "feature" I suspect nobody uses, let's remove it.

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

default pull: forget about "newbie protection" for... Junio C Hamano Fri, 22 Dec 2006 23:25:21 +0000 (15:25 -0800)

default pull: forget about "newbie protection" for now.

This will not be backward compatible no matter how you cut it.
Shelve it for now until somebody comes up with a better way to
determine when we can safely refuse to use the first set of
branchse for merging without upsetting valid workflows.

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

merge and reset: adjust for "reset --hard" messagesJunio C Hamano Fri, 22 Dec 2006 23:21:55 +0000 (15:21 -0800)

merge and reset: adjust for "reset --hard" messages

An earlier commit made "reset --hard" chattier but leaking its
message from "git rebase" (which calls it when first rewinding
the current branch to prepare replaying our own changes) without
explanation was confusing, so add an extra message to mention
it. Inside restorestate in merge (which is rarely exercised
codepath, where more than one strategies are attempted),
resetting to the original state uses "reset --hard" -- this can
be squelched entirely.

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

reflog expire: prune commits that are not incompleteJunio C Hamano Fri, 22 Dec 2006 08:46:33 +0000 (00:46 -0800)

reflog expire: prune commits that are not incomplete

Older fsck-objects and prune did not protect commits in reflog
entries, and it is quite possible that a commit still exists in
the repository (because it was in a pack, or something) while
some of its trees and blobs are long gone. Make sure the commit
and its associated tree is complete and expire incomplete ones.

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

commit-tree: do not overflow MAXPARENTJunio C Hamano Fri, 22 Dec 2006 07:49:13 +0000 (23:49 -0800)

commit-tree: do not overflow MAXPARENT

We have a static allocation of MAXPARENT, but that limit was not
enforced, other than by a lucky invocation of the program segfaulting.

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

Make git-rerere a builtinJohannes Schindelin Wed, 20 Dec 2006 16:39:41 +0000 (17:39 +0100)

Make git-rerere a builtin

The perl version used modules which are non-standard in some setups.
This patch brings the full power of rerere to a wider audience.

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Add a test for git-rerereJohannes Schindelin Thu, 21 Dec 2006 09:21:28 +0000 (10:21 +0100)

Add a test for git-rerere

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>

move read_mmfile() into xdiff-interfaceJohannes Schindelin Wed, 20 Dec 2006 16:37:07 +0000 (17:37 +0100)

move read_mmfile() into xdiff-interface

read_file() was a useful function if you want to work with the xdiff stuff,
so it was renamed and put into a more central place.

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Don't crash during repack of a reflog with pruned commits.Shawn O. Pearce Fri, 22 Dec 2006 00:49:06 +0000 (19:49 -0500)

Don't crash during repack of a reflog with pruned commits.

If the user has been using reflog for a long time (e.g. since its
introduction) then it is very likely that an existing branch's
reflog may still mention commits which have long since been pruned
out of the repository.

Rather than aborting with a very useless error message during
git-repack, pack as many valid commits as we can get from the
reflog and let the user know that the branch's reflog contains
already pruned commits. A future 'git reflog expire' (or whatever
it finally winds up being called) can then be performed to expunge
those reflog entries.

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

Merge branch 'master' into jc/fsck-reflogJunio C Hamano Fri, 22 Dec 2006 07:01:45 +0000 (23:01 -0800)

Merge branch 'master' into jc/fsck-reflog

* master:
Introduce a global level warn() function.
Rename imap-send's internal info/warn functions.
_XOPEN_SOURCE problem also exists on FreeBSD
parse-remote: mark all refs not for merge only when fetching more than one
git-reset --hard: tell the user what the HEAD was reset to
git-tag: support -F <file> option
Revert "git-pull: refuse default merge without branch.*.merge"
Suggest 'add' in am/revert/cherry-pick.
Use git-merge-file in git-merge-one-file, too
diff --check: fix off by one error
Documentation/git-branch: new -r to delete remote-tracking branches.
Fix system header problems on Mac OS X
spurious .sp in manpages

Introduce a global level warn() function.Shawn O. Pearce Fri, 22 Dec 2006 00:48:32 +0000 (19:48 -0500)

Introduce a global level warn() function.

Like the existing error() function the new warn() function can be
used to describe a situation that probably should not be occuring,
but which the user (and Git) can continue to work around without
running into too many problems.

An example situation is a bad commit SHA1 found in a reflog.
Attempting to read this record out of the reflog isn't really an
error as we have skipped over it in the past.

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

Rename imap-send's internal info/warn functions.Shawn O. Pearce Fri, 22 Dec 2006 00:48:12 +0000 (19:48 -0500)

Rename imap-send's internal info/warn functions.

Because I am about to introduce a global warn() function (much
like the global error function) this global declaration would
conflict with the one supplied by imap-send. Further since
imap-send's warn function output depends on its Quiet setting
we cannot simply remove its internal definition and use the
forthcoming global one.

So refactor warn() -> imap_warn() and info() -> imap_info()
(the latter was done just to be consistent in naming).

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

_XOPEN_SOURCE problem also exists on FreeBSDJunio C Hamano Fri, 22 Dec 2006 06:51:42 +0000 (22:51 -0800)

_XOPEN_SOURCE problem also exists on FreeBSD

Suggested by Rocco Rutte, Marco Roeland and others.

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

parse-remote: mark all refs not for merge only when... Junio C Hamano Fri, 22 Dec 2006 06:39:09 +0000 (22:39 -0800)

parse-remote: mark all refs not for merge only when fetching more than one

An earlier commit a71fb0a1 implemented much requested safety
valve to refuse "git pull" or "git pull origin" without explicit
refspecs from using the first set of remote refs obtained by
reading .git/remotes/origin file or branch.*.fetch configuration
variables to create a merge. The argument was that while on a
branch different from the default branch, it is often wrong to
merge the default remote ref suitable for merging into the master.

That is fine as a theory. But many repositories already in use
by people in the real world do not have any of the per branch
configuration crap. They did not need it, and they do not need
it now. Merging with the first remote ref listed was just fine,
because they had only one ref (e.g. 'master' from linux-2.6.git)
anyway.

So this changes the safety valve to be a lot looser. When "git
fetch" gets only one remote branch, the irritating warning would
not trigger anymore.

I think we could also make the warning trigger when branch.*.merge
is not specified for the current branch, but is for some other
branch. That is for another commit.

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

Merge branch 'maint'Junio C Hamano Fri, 22 Dec 2006 06:56:04 +0000 (22:56 -0800)

Merge branch 'maint'

* maint:
diff --check: fix off by one error
spurious .sp in manpages

git-reset --hard: tell the user what the HEAD was reset toJohannes Schindelin Thu, 21 Dec 2006 14:26:35 +0000 (15:26 +0100)

git-reset --hard: tell the user what the HEAD was reset to

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>

git-tag: support -F <file> optionJohannes Schindelin Thu, 21 Dec 2006 14:13:02 +0000 (15:13 +0100)

git-tag: support -F <file> option

This imitates the behaviour of git-commit.

Noticed by Han-Wen Nienhuys.

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Revert "git-pull: refuse default merge without branch... Junio C Hamano Fri, 22 Dec 2006 06:10:56 +0000 (22:10 -0800)

Revert "git-pull: refuse default merge without branch.*.merge"

This reverts commit a71fb0a1412c82405f078fb536797d3f5de68d53.

The logic to decide when to refuse to use the default "first set of
refs fetched" for merge was utterly bogus.

In a repository that happily worked correctly without any of the
per-branch configuration crap did not have (and did not have to
have) any branch.<current>.merge. With that broken commit, pulling
from origin no longer would work.

Suggest 'add' in am/revert/cherry-pick.Shawn O. Pearce Fri, 22 Dec 2006 02:30:17 +0000 (21:30 -0500)

Suggest 'add' in am/revert/cherry-pick.

Now that we have decided to make 'add' behave like 'update-index'
(and therefore fully classify update-index as strictly plumbing)
the am/revert/cherry-pick family of commands should not steer the
user towards update-index. Instead send them to the command they
probably already know, 'add'.

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

Use git-merge-file in git-merge-one-file, tooJohannes Schindelin Fri, 22 Dec 2006 02:20:55 +0000 (03:20 +0100)

Use git-merge-file in git-merge-one-file, too

Would you believe? I edited git-merge-one-file (note the missing ".sh"!)
when I submitted the patch which became commit e2b7008752...

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>

diff --check: fix off by one errorJohannes Schindelin Fri, 22 Dec 2006 02:20:11 +0000 (03:20 +0100)

diff --check: fix off by one error

When parsing the diff line starting with '@@', the line number of the
'+' file is parsed. For the subsequent line parses, the line number
should therefore be incremented after the parse, not before it.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Documentation/git-branch: new -r to delete remote-track... Quy Tonthat Thu, 21 Dec 2006 04:18:07 +0000 (15:18 +1100)

Documentation/git-branch: new -r to delete remote-tracking branches.

Signed-off-by: Quy Tonthat <qtonthat@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Fix system header problems on Mac OS XTerje Sten Bjerkseth Thu, 21 Dec 2006 01:32:21 +0000 (17:32 -0800)

Fix system header problems on Mac OS X

For Mac OS X 10.4, _XOPEN_SOURCE defines _POSIX_C_SOURCE which
hides many symbols from the program.

Breakage noticed and initial analysis provided by Randal
L. Schwartz.

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

git reflog expireJunio C Hamano Tue, 19 Dec 2006 08:23:12 +0000 (00:23 -0800)

git reflog expire

This prepares a place to collect reflog management subcommands,
and implements "expire" action.

$ git reflog expire --dry-run \
--expire=4.weeks \
--expire-unreachable=1.week \
refs/heads/master

The expiration uses two timestamps: --expire and --expire-unreachable.
Entries older than expire time (defaults to 90 days), and entries older
than expire-unreachable time (defaults to 30 days) and records a commit
that has been rewound and made unreachable from the current tip of the
ref are removed from the reflog.

The parameter handling is still rough, but I think the
core logic for expiration is already sound.

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

Move in_merge_bases() to commit.cJunio C Hamano Tue, 19 Dec 2006 08:14:04 +0000 (00:14 -0800)

Move in_merge_bases() to commit.c

This reasonably useful function was hidden inside builtin-branch.c

reflog: fix warning message.Junio C Hamano Tue, 19 Dec 2006 06:07:45 +0000 (22:07 -0800)

reflog: fix warning message.

When ref@{N} is specified on a ref that has only M entries (M < N),
instead of saying the initial timestamp the reflog has, warn that
there is only M entries.

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

Teach git-repack to preserve objects referred to by... Junio C Hamano Tue, 19 Dec 2006 01:25:28 +0000 (17:25 -0800)

Teach git-repack to preserve objects referred to by reflog entries.

This adds a new option --reflog to pack-objects and revision
machinery; do not bother documenting it for now, since this is
only useful for local repacking.

When the option is passed, objects reachable from reflog entries
are marked as interesting while computing the set of objects to
pack.

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

Protect commits recorded in reflog from pruning.Junio C Hamano Mon, 18 Dec 2006 09:36:16 +0000 (01:36 -0800)

Protect commits recorded in reflog from pruning.

This teaches fsck-objects and prune to protect objects referred
to by reflog entries.

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

add for_each_reflog_ent() iteratorJunio C Hamano Mon, 18 Dec 2006 09:18:16 +0000 (01:18 -0800)

add for_each_reflog_ent() iterator

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

Merge branch 'ew/svn-pm'Junio C Hamano Thu, 21 Dec 2006 01:20:45 +0000 (17:20 -0800)

Merge branch 'ew/svn-pm'

* ew/svn-pm:
git-svn: rename 'commit' command to 'set-tree'
git-svn: remove support for the svn command-line client
git-svn: convert to using Git.pm

diff documentation: mostly talk about <commit>Junio C Hamano Wed, 20 Dec 2006 22:41:54 +0000 (14:41 -0800)

diff documentation: mostly talk about <commit>

This corrects minor remaining bits that still talked about <tree-ish>;
the Porcelain users (as opposed to plumbers) are mostly interested in
commits so use <commit> consistently and keep a sentence that mentions
that <tree-ish> can be used in place of them.

Merge branch 'jc/leftright'Junio C Hamano Wed, 20 Dec 2006 22:20:17 +0000 (14:20 -0800)

Merge branch 'jc/leftright'

* jc/leftright:
Revert "Make left-right automatic."
Make left-right automatic.
Teach all of log family --left-right output.
rev-list --left-right

Merge branch 'jc/blame'Junio C Hamano Wed, 20 Dec 2006 21:58:10 +0000 (13:58 -0800)

Merge branch 'jc/blame'

* jc/blame:
blame: -b (blame.blankboundary) and --root (blame.showroot)

Merge branch 'jc/branch-remove-remote'Junio C Hamano Wed, 20 Dec 2006 21:57:59 +0000 (13:57 -0800)

Merge branch 'jc/branch-remove-remote'

* jc/branch-remove-remote:
git-branch -d: do not stop at the first failure.
Teach git-branch to delete tracking branches with -r -d

Merge branch 'jc/clone'Junio C Hamano Wed, 20 Dec 2006 21:56:14 +0000 (13:56 -0800)

Merge branch 'jc/clone'

* jc/clone:
Move "no merge candidate" warning into git-pull
Use preprocessor constants for environment variable names.
Do not create $GIT_DIR/remotes/ directory anymore.
Introduce GIT_TEMPLATE_DIR
Revert "fix testsuite: make sure they use templates freshly built from the source"
fix testsuite: make sure they use templates freshly built from the source
git-clone: lose the traditional 'no-separate-remote' layout
git-clone: lose the artificial "first" fetch refspec
git-pull: refuse default merge without branch.*.merge
git-clone: use wildcard specification for tracking branches

compat/inet_ntop: do not use u_intJunio C Hamano Wed, 20 Dec 2006 21:45:55 +0000 (13:45 -0800)

compat/inet_ntop: do not use u_int

It is pointless.

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

spurious .sp in manpagesJunio C Hamano Wed, 13 Dec 2006 08:58:28 +0000 (00:58 -0800)

spurious .sp in manpages

This cherry-picks 7ef04350 that has been applied to the 'master'
to fix ".sp" in generated manpages.

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

git-add: error out when given no arguments.Junio C Hamano Wed, 20 Dec 2006 21:06:46 +0000 (13:06 -0800)

git-add: error out when given no arguments.

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

revision: --skip=<n>Junio C Hamano Wed, 20 Dec 2006 02:25:32 +0000 (18:25 -0800)

revision: --skip=<n>

This adds --skip=<n> option to revision traversal machinery.
Documentation and test were added by Robert Fitzsimons.

Signed-off-by: Robert Fitzsimons <robfitz@273k.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Merge branch 'maint'Junio C Hamano Wed, 20 Dec 2006 19:24:56 +0000 (11:24 -0800)

Merge branch 'maint'

* maint:
GIT 1.4.4.3

GIT 1.4.4.3 v1.4.4.3Junio C Hamano Wed, 20 Dec 2006 19:23:22 +0000 (11:23 -0800)

GIT 1.4.4.3

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

clarify some error messages wrt unknown object typesNicolas Pitre Wed, 20 Dec 2006 18:34:05 +0000 (13:34 -0500)

clarify some error messages wrt unknown object types

If ever new object types are added for future extensions then better
have current git version report them as "unknown" instead of
"corrupted".

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

simplify inclusion of system header files.Junio C Hamano Tue, 19 Dec 2006 22:34:12 +0000 (14:34 -0800)

simplify inclusion of system header files.

This is a mechanical clean-up of the way *.c files include
system header files.

(1) sources under compat/, platform sha-1 implementations, and
xdelta code are exempt from the following rules;

(2) the first #include must be "git-compat-util.h" or one of
our own header file that includes it first (e.g. config.h,
builtin.h, pkt-line.h);

(3) system headers that are included in "git-compat-util.h"
need not be included in individual C source files.

(4) "git-compat-util.h" does not have to include subsystem
specific header files (e.g. expat.h).

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

index-pack usage of mmap() is unacceptably slower on... Nicolas Pitre Tue, 19 Dec 2006 15:53:08 +0000 (10:53 -0500)

index-pack usage of mmap() is unacceptably slower on many OSes other than Linux

It was reported by Randal L. Schwartz <merlyn@stonehenge.com> that
indexing the Linux repository ~150MB pack takes about an hour on OS x
while it's a minute on Linux. It seems that the OS X mmap()
implementation is more than 2 orders of magnitude slower than the Linux
one.

Linus proposed a patch replacing mmap() with pread() bringing index-pack
performance on OS X in line with the Linux one. The performances on
Linux also improved by a small margin.

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

gitweb: Show '...' links in "summary" view only if... Robert Fitzsimons Tue, 19 Dec 2006 12:08:54 +0000 (12:08 +0000)

gitweb: Show '...' links in "summary" view only if there are more items

Show "..." links in "summary" view to shortlog, heads (if there are
any), and tags (if there are any) only if there are more items to show
than shown already.

This means that "..." link is shown below shortened shortlog if there
are more than 16 commits, "..." link below shortened heads list if
there are more than 16 heads refs (16 branches), "..." link below
shortened tags list if there are more than 16 tags.

Modified patch from Jakub to to apply cleanly to master, also preform
the same "..." link logic to the forks list.

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

config_rename_section: fix FILE* leakJunio C Hamano Wed, 20 Dec 2006 05:55:27 +0000 (21:55 -0800)

config_rename_section: fix FILE* leak

Noticed by SungHyun Nam.

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

Remove COLLISION_CHECK from Makefile since it's not... Brian Gernhardt Wed, 20 Dec 2006 03:25:13 +0000 (22:25 -0500)

Remove COLLISION_CHECK from Makefile since it's not used.

It's rather misleading to have configuration options that don't do
anything. If someone adds collision checking they might also want to
restore this option.

Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

fix populate-filespecJunio C Hamano Wed, 20 Dec 2006 02:26:48 +0000 (18:26 -0800)

fix populate-filespec

I hand munged the original patch when committing 1510fea78, and
screwed up the conversion.

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

git-cvsserver: fix breakage when calling git merge... Eric Wong Tue, 19 Dec 2006 22:58:20 +0000 (14:58 -0800)

git-cvsserver: fix breakage when calling git merge-file

In the same vein as 8336afa563fbeff35e531396273065161181f04c,
this fixes the the RCS merge to git-merge-file conversion in
commit e2b70087.

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

Revert "Make left-right automatic."Junio C Hamano Tue, 19 Dec 2006 10:28:16 +0000 (02:28 -0800)

Revert "Make left-right automatic."

This reverts commit 5761231975ceffa531d86d9bab0f9a9a370674f6.

Feeding symmetric difference to gitk is so useful, and it is the
same for other graphical Porcelains. Rather than forcing them
to pass --no-left-right, making it optional.

Noticed and reported by Jeff King.

Move "no merge candidate" warning into git-pullJosef Weidendorfer Tue, 19 Dec 2006 00:39:07 +0000 (01:39 +0100)

Move "no merge candidate" warning into git-pull

The warning triggered even when running "git fetch" only
when resulting .git/FETCH_HEAD only contained
branches marked as 'not-for-merge'.

Signed-off-by: Josef Weidendorfer <weidendo@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Use preprocessor constants for environment variable... Junio C Hamano Tue, 19 Dec 2006 09:28:15 +0000 (01:28 -0800)

Use preprocessor constants for environment variable names.

We broke the discipline Linus set up to allow compiler help us
avoid typos in environment names in the early days of git over
time. This defines a handful preprocessor constants for
environment variable names used in relatively core parts of the
system.

I've left out variable names specific to subsystems such as HTTP
and SSL as I do not think they are big problems.

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

Do not create $GIT_DIR/remotes/ directory anymore.Junio C Hamano Tue, 19 Dec 2006 09:50:37 +0000 (01:50 -0800)

Do not create $GIT_DIR/remotes/ directory anymore.

Because we do not use --no-separate-remote anymore, there is no
reason to create that directory from the template.

t5510 test is updated to test both $GIT_DIR/remotes/ based
configuration and $GIT_DIR/config variable (credits to
Johannes).

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

Merge branch 'jc/test-clone' into jc/cloneJunio C Hamano Tue, 19 Dec 2006 09:38:18 +0000 (01:38 -0800)

Merge branch 'jc/test-clone' into jc/clone

* jc/test-clone: (35 commits)
Introduce GIT_TEMPLATE_DIR
Revert "fix testsuite: make sure they use templates freshly built from the source"
fix testsuite: make sure they use templates freshly built from the source
rerere: fix breakage of resolving.
Add config example with respect to branch
Add documentation for show-branch --topics
make git a bit less cryptic on fetch errors
make patch_delta() error cases a bit more verbose
racy-git: documentation updates.
show-ref: fix --exclude-existing
parse-remote::expand_refs_wildcard()
vim syntax: follow recent changes to commit template
show-ref: fix --verify --hash=length
show-ref: fix --quiet --verify
avoid accessing _all_ loose refs in git-show-ref --verify
git-fetch: Avoid reading packed refs over and over again
Teach show-branch how to show ref-log data.
markup fix in svnimport documentation.
Documentation: new option -P for git-svnimport
Fix mis-mark-up in git-merge-file.txt documentation
...

Introduce GIT_TEMPLATE_DIRJohannes Schindelin Tue, 19 Dec 2006 08:18:09 +0000 (09:18 +0100)

Introduce GIT_TEMPLATE_DIR

Instead of passing --template explicitely to init-db and clone, you can
just set the environment variable GIT_TEMPLATE_DIR.

Also make use of it in the tests, to make sure that the templates are
copied.

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Revert "fix testsuite: make sure they use templates... Junio C Hamano Tue, 19 Dec 2006 09:14:35 +0000 (01:14 -0800)

Revert "fix testsuite: make sure they use templates freshly built from the source"

This reverts commit 74d20040cafdced657efbf49795183d209a3a07b.
Version from Johannes to introduce GIT_TEMPLATE_DIR is simpler,
although I unconsciously stayed away from introducing yet another
environment variable.

git-add --interactive: hunk splittingJunio C Hamano Tue, 12 Dec 2006 01:09:26 +0000 (17:09 -0800)

git-add --interactive: hunk splitting

This adds hunk splitting and recounting the patch lines. The
'patch' subcommand now allows you to split a large hunk at
context lines in the middle.

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

git-add --interactiveJunio C Hamano Mon, 11 Dec 2006 04:55:50 +0000 (20:55 -0800)

git-add --interactive

A script to be driven when the user says "git add --interactive"
is introduced.

When it is run, first it runs its internal 'status' command to
show the current status, and then goes into its internactive
command loop.

The command loop shows the list of subcommands available, and
gives a prompt "What now> ". In general, when the prompt ends
with a single '>', you can pick only one of the choices given
and type return, like this:

*** Commands ***
1: status 2: update 3: revert 4: add untracked
5: patch 6: diff 7: quit 8: help
What now> 1

You also could say "s" or "sta" or "status" above as long as the
choice is unique.

The main command loop has 6 subcommands (plus help and quit).

* 'status' shows the change between HEAD and index (i.e. what
will be committed if you say "git commit"), and between index
and working tree files (i.e. what you could stage further
before "git commit" using "git-add") for each path. A sample
output looks like this:

staged unstaged path
1: binary nothing foo.png
2: +403/-35 +1/-1 git-add--interactive.perl

It shows that foo.png has differences from HEAD (but that is
binary so line count cannot be shown) and there is no
difference between indexed copy and the working tree
version (if the working tree version were also different,
'binary' would have been shown in place of 'nothing'). The
other file, git-add--interactive.perl, has 403 lines added
and 35 lines deleted if you commit what is in the index, but
working tree file has further modifications (one addition and
one deletion).

* 'update' shows the status information and gives prompt
"Update>>". When the prompt ends with double '>>', you can
make more than one selection, concatenated with whitespace or
comma. Also you can say ranges. E.g. "2-5 7,9" to choose
2,3,4,5,7,9 from the list. You can say '*' to choose
everything.

What you chose are then highlighted with '*', like this:

staged unstaged path
1: binary nothing foo.png
* 2: +403/-35 +1/-1 git-add--interactive.perl

To remove selection, prefix the input with - like this:

Update>> -2

After making the selection, answer with an empty line to
stage the contents of working tree files for selected paths
in the index.

* 'revert' has a very similar UI to 'update', and the staged
information for selected paths are reverted to that of the
HEAD version. Reverting new paths makes them untracked.

* 'add untracked' has a very similar UI to 'update' and
'revert', and lets you add untracked paths to the index.

* 'patch' lets you choose one path out of 'status' like
selection. After choosing the path, it presents diff between
the index and the working tree file and asks you if you want
to stage the change of each hunk. You can say:

y - add the change from that hunk to index
n - do not add the change from that hunk to index
a - add the change from that hunk and all the rest to index
d - do not the change from that hunk nor any of the rest to index
j - do not decide on this hunk now, and view the next
undecided hunk
J - do not decide on this hunk now, and view the next hunk
k - do not decide on this hunk now, and view the previous
undecided hunk
K - do not decide on this hunk now, and view the previous hunk

After deciding the fate for all hunks, if there is any hunk
that was chosen, the index is updated with the selected hunks.

* 'diff' lets you review what will be committed (i.e. between
HEAD and index).

This is still rough, but does everything except a few things I
think are needed.

* 'patch' should be able to allow splitting a hunk into
multiple hunks.

* 'patch' does not adjust the line offsets @@ -k,l +m,n @@
in the hunk header. This does not have major problem in
practice, but it _should_ do the adjustment.

* It does not have any explicit support for a merge in
progress; it may not work at all.

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

blame: -b (blame.blankboundary) and --root (blame.showroot)Junio C Hamano Mon, 18 Dec 2006 22:04:38 +0000 (14:04 -0800)

blame: -b (blame.blankboundary) and --root (blame.showroot)

When blame.blankboundary is set (or -b option is given), commit
object names are blanked out in the "human readable" output
format for boundary commits.

When blame.showroot is not set (or --root is not given), the
root commits are treated as boundary commits. The code still
attributes the lines to them, but with -b their object names are
not shown.

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

git-branch -d: do not stop at the first failure.Quy Tonthat Mon, 18 Dec 2006 22:42:16 +0000 (09:42 +1100)

git-branch -d: do not stop at the first failure.

If there are more than one branches to be deleted, failure on
one will no longer stop git-branch to process the next ones.
The command still reports failures by exitting non-zero status.

Signed-off-by: Quy Tonthat <qtonthat@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Teach git-branch to delete tracking branches with ... Junio C Hamano Mon, 18 Dec 2006 07:58:16 +0000 (23:58 -0800)

Teach git-branch to delete tracking branches with -r -d

Because -r already means "remote" when listing, you can say:

$ git branch -d -r origin/todo origin/html origin/man

I just twisted it not to check fast-forwardness with the current
branch when you are removing a tracking branch. Most likely,
removal of a tracking branch is not because you are "done with"
it (for a local branch, it usually means "you merged it up"),
but because you are not even interested in it. In other words,
remote tracking branches are more like tags than branches.

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

fix testsuite: make sure they use templates freshly... Junio C Hamano Mon, 18 Dec 2006 23:27:43 +0000 (15:27 -0800)

fix testsuite: make sure they use templates freshly built from the source

The initial t/trash repository for testing was created properly
but over time we gained many tests that create secondary test
repositories with init-db or clone and they were not careful
enough.

This fixes it.

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

rerere: fix breakage of resolving.Junio C Hamano Tue, 19 Dec 2006 00:20:53 +0000 (16:20 -0800)

rerere: fix breakage of resolving.

commit e2b70087 botched the RCS merge to git-merge-file conversion.
There is no command called "git merge-file" (yes, we are using safer
variant of Perl's system(3)).

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

Add config example with respect to branchAneesh Kumar K.V Thu, 7 Dec 2006 06:36:55 +0000 (12:06 +0530)

Add config example with respect to branch

Update config.txt with example with respect to branch
config variable. This give a better idea regarding
how branch names are expected.

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Add documentation for show-branch --topicsBrian Gernhardt Mon, 18 Dec 2006 15:48:33 +0000 (10:48 -0500)

Add documentation for show-branch --topics

Add a quick paragraph explaining the --topics option for show-branch.
The explanation is an abbreviated version of the commit message from
d320a5437f8304cf9ea3ee1898e49d643e005738.

Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

make git a bit less cryptic on fetch errorsNicolas Pitre Mon, 18 Dec 2006 20:16:58 +0000 (15:16 -0500)

make git a bit less cryptic on fetch errors

The remote server might not want to tell why it doesn't like us for
security reasons, but let's make the client report such error in a bit
less confusing way. The remote failure remains a mystery, but the local
message might be a bit less so.

[jc: with a gentle wording updates from Andy Parkins]

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

make patch_delta() error cases a bit more verboseNicolas Pitre Mon, 18 Dec 2006 21:06:50 +0000 (16:06 -0500)

make patch_delta() error cases a bit more verbose

It is especially important to distinguish between a malloc() failure
from all the other cases. An out of memory condition is much less
worrisome than a compatibility/corruption problem.

Also make test-delta compilable again.

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

racy-git: documentation updates.Junio C Hamano Mon, 18 Dec 2006 22:18:54 +0000 (14:18 -0800)

racy-git: documentation updates.

We've removed the workaround for runtime penalty that did not
exist in practice some time ago, but the technical paper that
proposed that change still said "we probably should do so".

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

show-ref: fix --exclude-existingJunio C Hamano Mon, 18 Dec 2006 21:33:47 +0000 (13:33 -0800)

show-ref: fix --exclude-existing

Do not falsely document --filter-invalid which does not even exist.
Also make sure the line is long enough to have ^{} suffix before
checking for it.

Pointed out by Dscho.

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

parse-remote::expand_refs_wildcard()Junio C Hamano Mon, 18 Dec 2006 20:13:46 +0000 (12:13 -0800)

parse-remote::expand_refs_wildcard()

Work around dash incompatibility by not using "${name%'^{}'}".

Noticed by Jeff King; dash seems to mistake the closing brace
inside the single quote as the terminating brace for parameter
expansion.

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

vim syntax: follow recent changes to commit templateJeff King Mon, 18 Dec 2006 07:26:42 +0000 (02:26 -0500)

vim syntax: follow recent changes to commit template

This patch changes the syntax highlighting to correctly match the new
text of the commit message introduced by
82dca84871637ac9812c0dec27f56d07cfba524c

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

show-ref: fix --verify --hash=lengthJunio C Hamano Mon, 18 Dec 2006 03:27:49 +0000 (19:27 -0800)

show-ref: fix --verify --hash=length

An earlier optimization for --verify broke a lot of stuff
because it did not take interaction with other flags into
account.

This also fixes an unrelated argument parsing error; --hash=8
should mean the same as "--hash --abbrev=8".

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

show-ref: fix --quiet --verifyJunio C Hamano Mon, 18 Dec 2006 02:53:24 +0000 (18:53 -0800)

show-ref: fix --quiet --verify

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

Merge branch 'jc/blame-boundary'Junio C Hamano Mon, 18 Dec 2006 02:34:51 +0000 (18:34 -0800)

Merge branch 'jc/blame-boundary'

* jc/blame-boundary:
git-blame: show lines attributed to boundary commits differently.

Merge branch 'jc/reflog' (early part)Junio C Hamano Mon, 18 Dec 2006 02:31:24 +0000 (18:31 -0800)

Merge branch 'jc/reflog' (early part)

* 'jc/reflog' (early part):
Teach show-branch how to show ref-log data.

Merge branch 'js/branch-config'Junio C Hamano Mon, 18 Dec 2006 02:27:17 +0000 (18:27 -0800)

Merge branch 'js/branch-config'

* js/branch-config:
git-branch: rename config vars branch.<branch>.*, too
add a function to rename sections in the config

Merge branch 'jn/web' (early part)Junio C Hamano Mon, 18 Dec 2006 02:27:17 +0000 (18:27 -0800)

Merge branch 'jn/web' (early part)

* 'jn/web' (early part):
gitweb: Add "next" link to commit view
gitweb: Add title attribute to ref marker with full ref name
gitweb: Do not show difftree for merges in "commit" view
gitweb: SHA-1 in commit log message links to "object" view
gitweb: Hyperlink target of symbolic link in "tree" view (if possible)
gitweb: Add generic git_object subroutine to display object of any type
gitweb: Show target of symbolic link in "tree" view
gitweb: Don't use Content-Encoding: header in git_snapshot

avoid accessing _all_ loose refs in git-show-ref -... Junio C Hamano Mon, 18 Dec 2006 02:08:52 +0000 (18:08 -0800)

avoid accessing _all_ loose refs in git-show-ref --verify

If you want to verify a ref, it is overkill to first read all loose refs
into a linked list, and then check if the desired ref is there.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Acked-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>

git-fetch: Avoid reading packed refs over and over... Junio C Hamano Mon, 18 Dec 2006 01:57:19 +0000 (17:57 -0800)

git-fetch: Avoid reading packed refs over and over again

When checking which tags to fetch, the old code used to call
git-show-ref --verify for each remote tag. Since reading even
packed refs is not a cheap operation when there are a lot of
local refs, the code became quite slow.

This fixes it by teaching git-show-ref to filter out existing
refs using a new mode of operation of git-show-ref.

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

Teach show-branch how to show ref-log data.Junio C Hamano Thu, 14 Dec 2006 23:58:56 +0000 (15:58 -0800)

Teach show-branch how to show ref-log data.

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

Make left-right automatic.Junio C Hamano Sun, 17 Dec 2006 00:07:20 +0000 (16:07 -0800)

Make left-right automatic.

When using symmetric differences, I think the user almost always
would want to know which side of the symmetry each commit came
from. So this removes --left-right option from the command
line, and turns it on automatically when a symmetric difference
is used ("git log --merge" counts as a symmetric difference
between HEAD and MERGE_HEAD).

Just in case, a new option --no-left-right is provided to defeat
this, but I do not know if it would be useful.

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

Teach all of log family --left-right output.Junio C Hamano Sat, 16 Dec 2006 23:31:25 +0000 (15:31 -0800)

Teach all of log family --left-right output.

This makes reviewing

git log --left-right --merge --no-merges -p

a lot more pleasant.

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

rev-list --left-rightJunio C Hamano Mon, 23 Oct 2006 00:32:47 +0000 (17:32 -0700)

rev-list --left-right

The output from "symmetric diff", i.e. A...B, does not
distinguish between commits that are reachable from A and the
ones that are reachable from B. In this picture, such a
symmetric diff includes commits marked with a and b.

x---b---b branch B
/ \ /
/ .
/ / \
o---x---a---a branch A

However, you cannot tell which ones are 'a' and which ones are
'b' from the output. Sometimes this is frustrating. This adds
an output option, --left-right, to rev-list.

rev-list --left-right A...B

would show ones reachable from A prefixed with '<' and the ones
reachable from B prefixed with '>'.

When combined with --boundary, boundary commits (the ones marked
with 'x' in the above picture) are shown with prefix '-', so you
would see list that looks like this:

git rev-list --left-right --boundary --pretty=oneline A...B

>bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb 3rd on b
>bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb 2nd on b
<aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 3rd on a
<aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 2nd on a
-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 1st on b
-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 1st on a

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

markup fix in svnimport documentation.Junio C Hamano Sun, 17 Dec 2006 18:33:24 +0000 (10:33 -0800)

markup fix in svnimport documentation.

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

Documentation: new option -P for git-svnimportQuy Tonthat Sun, 17 Dec 2006 14:50:12 +0000 (01:50 +1100)

Documentation: new option -P for git-svnimport

Documentation: new option -P for git-svnimport.

Signed-off-by: Quy Tonthat <qtonthat@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Fix mis-mark-up in git-merge-file.txt documentationJunio C Hamano Sun, 17 Dec 2006 08:46:35 +0000 (00:46 -0800)

Fix mis-mark-up in git-merge-file.txt documentation

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

Default GIT_COMMITTER_NAME to login name in recieve... Shawn O. Pearce Sun, 17 Dec 2006 08:15:14 +0000 (03:15 -0500)

Default GIT_COMMITTER_NAME to login name in recieve-pack.

If GIT_COMMITTER_NAME is not available in receive-pack but reflogs
are enabled we would normally die out with an error message asking
the user to correct their environment settings.

Now that reflogs are enabled by default in (what we guessed to be)
non-bare Git repositories this may cause problems for some users
who don't have their full name in the gecos field and who don't
have access to the remote system to correct the problem.

So rather than die()'ing out in receive-pack when we try to log a
ref change and have no committer name we default to the username,
as obtained from the host's password database.

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

Fix check_file_directory_conflict().Junio C Hamano Sun, 17 Dec 2006 01:39:06 +0000 (17:39 -0800)

Fix check_file_directory_conflict().

When replacing an existing file A with a directory A that has a
file A/B in it in the index, 'update-index --replace --add A/B'
did not properly remove the file to make room for the new
directory.

There was a trivial logic error, most likely a cut & paste one,
dating back to quite early days of git.

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

git-add: remove conflicting entry when adding.Junio C Hamano Sun, 17 Dec 2006 09:09:41 +0000 (01:09 -0800)

git-add: remove conflicting entry when adding.

When replacing an existing file A with a directory A that has a
file A/B in it in the index, 'git add' did not succeed because
it forgot to pass the allow-replace flag to add_cache_entry().

It might be safer to leave this as an error and require the user
to explicitly remove the existing A first before adding A/B
since it is an unusual case, but doing that automatically is
much easier to use.

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

update-index: make D/F conflict error a bit more verbose.Junio C Hamano Sun, 17 Dec 2006 00:23:02 +0000 (16:23 -0800)

update-index: make D/F conflict error a bit more verbose.

When you remove a directory D that has a tracked file D/F out of the
way to create a file D and try to "git update-index --add D", it used
to say "cannot add" which was not very helpful. This issues an extra
error message to explain the situation before the final "fatal" message.

Since D/F conflicts are relatively rare event, extra verbosity would
not make things too noisy.

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

git-branch: rename config vars branch.<branch>.*, tooJohannes Schindelin Sat, 16 Dec 2006 14:15:02 +0000 (15:15 +0100)

git-branch: rename config vars branch.<branch>.*, too

When renaming a branch, the corresponding config section should
be renamed, too.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>

add a function to rename sections in the configJohannes Schindelin Sat, 16 Dec 2006 14:14:14 +0000 (15:14 +0100)

add a function to rename sections in the config

Given a config like this:

# A config
[very.interesting.section]
not

The command

$ git repo-config --rename-section very.interesting.section bla.1

will lead to this config:

# A config
[bla "1"]
not

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>