gitweb.git
git-daemon poll() spinning out of controlJens Axboe Thu, 20 Oct 2005 07:52:32 +0000 (00:52 -0700)

git-daemon poll() spinning out of control

With the '0' timeout given to poll, it returns instantly without any
events on my system, causing git-daemon to consume all the CPU time. Use
-1 as the timeout so poll() only returns in case of EINTR or actually
events being available.

Signed-off-by: Jens Axboe <axboe@suse.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Merge /pub/scm/git/git to recover lost side branchJunio C Hamano Fri, 21 Oct 2005 00:06:15 +0000 (17:06 -0700)

Merge /pub/scm/git/git to recover lost side branch

Sorry for the mistake of rewinding something already pushed out.
This recovers the side branch lost by that mistake, specifically
ea5a65a59916503d2a14369c46b1023384d51645 commit.

Signed-off-by: Junio C Hamano <junio@hera.kernel.org>

Make sure we barf on ref^{type} failure.Junio C Hamano Thu, 20 Oct 2005 05:48:16 +0000 (22:48 -0700)

Make sure we barf on ref^{type} failure.

Martin Langhoff noticed that ref^0 barfed correctly when we did not
have the commit in a broken repository, but ref^{commit} didn't.

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

Be more careful tangling object chains while marking... Junio C Hamano Thu, 20 Oct 2005 04:55:49 +0000 (21:55 -0700)

Be more careful tangling object chains while marking commits.

Also Johannes noticed we use parse_object to look up if we know that
object already -- we should just ask the in-core object registry with
lookup_object() for that.

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

git-fetch/push/pull: documentation.Junio C Hamano Thu, 20 Oct 2005 04:25:39 +0000 (21:25 -0700)

git-fetch/push/pull: documentation.

The documentation was lazily sharing the argument description across these
commands.

Lazy may be a way of life, but that does not justify confusing others ;-).

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

Do not feed rev-list an invalid SHA1 expression.Junio C Hamano Thu, 20 Oct 2005 01:28:17 +0000 (18:28 -0700)

Do not feed rev-list an invalid SHA1 expression.

The previous round to optimize fetch-pack has a small bug that
feeds SHA1^ ("parent commit") before making sure SHA1 is
actually a commit (or a tag that eventually dereferences to a
commit). Also it did not help culling the known-to-be-common
parents if the common one was a merge.

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

[PATCH] Do not send "want" lines for complete objectsJohannes Schindelin Wed, 19 Oct 2005 23:14:34 +0000 (16:14 -0700)

[PATCH] Do not send "want" lines for complete objects

It was all good and well to check if all remote refs are complete (local
refs or descendants thereof), but we can just as easily use the same
information to avoid sending "want" lines just for the complete objects in
the case that not all remote refs are complete (or their names differ).

Also, git-fetch-pack does not have to ask for descendants of remote refs
which are complete (for now, git-rev-list is told to ignore only the first
parent). That change also eliminates a code path where a popen()ed handle
was not pclose()ed.

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

count-objects: squelch error from find on sparse object... Junio C Hamano Wed, 19 Oct 2005 22:01:50 +0000 (15:01 -0700)

count-objects: squelch error from find on sparse object directory.

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

git-daemon: timeout, eliminate double DWIMH. Peter Anvin Wed, 19 Oct 2005 21:44:43 +0000 (14:44 -0700)

git-daemon: timeout, eliminate double DWIM

It turns out that not only did git-daemon do DWIM, but git-upload-pack
does as well. This is bad; security checks have to be performed *after*
canonicalization, not before.

Additionally, the current git-daemon can be trivially DoSed by spewing
SYNs at the target port.

This patch adds a --strict option to git-upload-pack to disable all
DWIM, a --timeout option to git-daemon and git-upload-pack, and an
--init-timeout option to git-daemon (which is typically set to a much
lower value, since the initial request should come immediately from the
client.)

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

git-clone: always keep pack sent from remote (documenta... Junio C Hamano Wed, 19 Oct 2005 21:43:43 +0000 (14:43 -0700)

git-clone: always keep pack sent from remote (documentation).

This adjusts the documentation.

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

git-clone: always keep pack sent from remote.Junio C Hamano Wed, 19 Oct 2005 21:43:43 +0000 (14:43 -0700)

git-clone: always keep pack sent from remote.

This deprecates --keep and -q flags and always keeps the pack
sent from the remote site. Corresponding configuration
variables are also removed.

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

Do not ask for objects known to be complete.Junio C Hamano Wed, 19 Oct 2005 21:27:02 +0000 (14:27 -0700)

Do not ask for objects known to be complete.

On top of optimization by Linus not to ask refs that already match, we
can walk our refs and not issue "want" for things that are known to be
reachable from them.

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

Support for HTTP transfer timeouts based on transfer... Nick Hengeveld Wed, 19 Oct 2005 21:27:01 +0000 (14:27 -0700)

Support for HTTP transfer timeouts based on transfer speed

Add configuration settings to abort HTTP requests if the transfer rate
drops below a threshold for a specified length of time. Environment
variables override config file settings.

Signed-off-by: Nick Hengeveld <nickh@reactrix.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

git-daemon: timeout, eliminate double DWIMH. Peter Anvin Wed, 19 Oct 2005 21:27:01 +0000 (14:27 -0700)

git-daemon: timeout, eliminate double DWIM

It turns out that not only did git-daemon do DWIM, but git-upload-pack
does as well. This is bad; security checks have to be performed *after*
canonicalization, not before.

Additionally, the current git-daemon can be trivially DoSed by spewing
SYNs at the target port.

This patch adds a --strict option to git-upload-pack to disable all
DWIM, a --timeout option to git-daemon and git-upload-pack, and an
--init-timeout option to git-daemon (which is typically set to a much
lower value, since the initial request should come immediately from the
client.)

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

GIT 0.99.8f v0.99.8fJunio C Hamano Wed, 19 Oct 2005 09:31:27 +0000 (02:31 -0700)

GIT 0.99.8f

Yes I said 0.99.8e was the last maintenance release for 0.99.8, but it
turns out that there was another backport necessary after git-daemon
was unleashed on kernel.org servers.

Contains the following since 0.99.8e:

H. Peter Anvin:
revised^2: git-daemon extra paranoia, and path DWIM

Johannes Schindelin:
Fix cvsimport warning when called without --no-cvs-direct

Junio C Hamano:
Do not ask for objects known to be complete.

Linus Torvalds:
git-fetch-pack: avoid unnecessary zero packing
Optimize common case of git-rev-list

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

Fix cvsimport warning when called without --no-cvs... Johannes Schindelin Wed, 19 Oct 2005 07:01:02 +0000 (00:01 -0700)

Fix cvsimport warning when called without --no-cvs-direct

Perl was warning that $opt_p was undefined in that case.

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

Do not ask for objects known to be complete.Junio C Hamano Wed, 19 Oct 2005 07:01:01 +0000 (00:01 -0700)

Do not ask for objects known to be complete.

On top of optimization by Linus not to ask refs that already match, we
can walk our refs and not issue "want" for things that are known to be
reachable from them.

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

Optimize common case of git-rev-listLinus Torvalds Wed, 19 Oct 2005 07:01:01 +0000 (00:01 -0700)

Optimize common case of git-rev-list

I took a look at webgit, and it looks like at least for the "projects"
page, the most common operation ends up being basically

git-rev-list --header --parents --max-count=1 HEAD

Now, the thing is, the way "git-rev-list" works, it always keeps on
popping the parents and parsing them in order to build the list of
parents, and it turns out that even though we just want a single commit,
git-rev-list will invariably look up _three_ generations of commits.

It will parse:
- the commit we want (it obviously needs this)
- it's parent(s) as part of the "pop_most_recent_commit()" logic
- it will then pop one of the parents before it notices that it doesn't
need any more
- and as part of popping the parent, it will parse the grandparent (again
due to "pop_most_recent_commit()".

Now, I've strace'd it, and it really is pretty efficient on the whole, but
if things aren't nicely cached, and with long-latency IO, doing those two
extra objects (at a minimum - if the parent is a merge it will be more) is
just wasted time, and potentially a lot of it.

So here's a quick special-case for the trivial case of "just one commit,
and no date-limits or other special rules".

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

revised^2: git-daemon extra paranoia, and path DWIMH. Peter Anvin Wed, 19 Oct 2005 07:01:01 +0000 (00:01 -0700)

revised^2: git-daemon extra paranoia, and path DWIM

This patch adds some extra paranoia to the git-daemon filename test. In
particular, it now rejects pathnames containing //; it also adds a
redundant test for pathname absoluteness (belts and suspenders.)

A single / at the end of the path is still permitted, however, and the
.git and /.git append DWIM stuff is now handled in an integrated manner,
which means the resulting path will always be subjected to pathname checks.

[jc: backported to 0.99.8 maintenance branch]

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

git-fetch-pack: avoid unnecessary zero packingLinus Torvalds Wed, 19 Oct 2005 06:52:08 +0000 (23:52 -0700)

git-fetch-pack: avoid unnecessary zero packing

If everything is up-to-date locally, we don't need to even ask for a
pack-file from the remote, or try to unpack it.

This is especially important for tags - since the pack-file common commit
logic is based purely on the commit history, it will never be able to find
a common tag, and will thus always end up re-fetching them.

Especially notably, if the tag points to a non-commit (eg a tagged tree),
the pack-file would be unnecessarily big, just because it cannot any most
recent common point between commits for pruning.

Short-circuiting the case where we already have that reference means that
we avoid a lot of these in the common case.

NOTE! This only matches remote ref names against the same local name,
which works well for tags, but is not as generic as it could be. If we
ever need to, we could match against _any_ local ref (if we have it, we
have it), but this "match against same name" is simpler and more
efficient, and covers the common case.

Renaming of refs is common for branch heads, but since those are always
commits, the pack-file generation can optimize that case.

In some cases we might still end up fetching pack-files unnecessarily, but
this at least avoids the re-fetching of tags over and over if you use a
regular

git fetch --tags ...

which was the main reason behind the change.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Do not ask for objects known to be complete.Junio C Hamano Wed, 19 Oct 2005 01:42:19 +0000 (18:42 -0700)

Do not ask for objects known to be complete.

On top of optimization by Linus not to ask refs that already match, we
can walk our refs and not issue "want" for things that are known to be
reachable from them.

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

Even when overwriting tags, report if they are changed... Junio C Hamano Wed, 19 Oct 2005 01:42:14 +0000 (18:42 -0700)

Even when overwriting tags, report if they are changed or not.

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

Optimize common case of git-rev-listLinus Torvalds Wed, 19 Oct 2005 01:29:17 +0000 (18:29 -0700)

Optimize common case of git-rev-list

I took a look at webgit, and it looks like at least for the "projects"
page, the most common operation ends up being basically

git-rev-list --header --parents --max-count=1 HEAD

Now, the thing is, the way "git-rev-list" works, it always keeps on
popping the parents and parsing them in order to build the list of
parents, and it turns out that even though we just want a single commit,
git-rev-list will invariably look up _three_ generations of commits.

It will parse:
- the commit we want (it obviously needs this)
- it's parent(s) as part of the "pop_most_recent_commit()" logic
- it will then pop one of the parents before it notices that it doesn't
need any more
- and as part of popping the parent, it will parse the grandparent (again
due to "pop_most_recent_commit()".

Now, I've strace'd it, and it really is pretty efficient on the whole, but
if things aren't nicely cached, and with long-latency IO, doing those two
extra objects (at a minimum - if the parent is a merge it will be more) is
just wasted time, and potentially a lot of it.

So here's a quick special-case for the trivial case of "just one commit,
and no date-limits or other special rules".

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

revised^2: git-daemon extra paranoia, and path DWIMH. Peter Anvin Wed, 19 Oct 2005 01:26:52 +0000 (18:26 -0700)

revised^2: git-daemon extra paranoia, and path DWIM

This patch adds some extra paranoia to the git-daemon filename test. In
particular, it now rejects pathnames containing //; it also adds a
redundant test for pathname absoluteness (belts and suspenders.)

A single / at the end of the path is still permitted, however, and the
.git and /.git append DWIM stuff is now handled in an integrated manner,
which means the resulting path will always be subjected to pathname checks.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Remove unused include.Junio C Hamano Tue, 18 Oct 2005 22:41:43 +0000 (15:41 -0700)

Remove unused include.

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

git-fetch-pack: avoid unnecessary zero packingLinus Torvalds Tue, 18 Oct 2005 18:35:17 +0000 (11:35 -0700)

git-fetch-pack: avoid unnecessary zero packing

If everything is up-to-date locally, we don't need to even ask for a
pack-file from the remote, or try to unpack it.

This is especially important for tags - since the pack-file common commit
logic is based purely on the commit history, it will never be able to find
a common tag, and will thus always end up re-fetching them.

Especially notably, if the tag points to a non-commit (eg a tagged tree),
the pack-file would be unnecessarily big, just because it cannot any most
recent common point between commits for pruning.

Short-circuiting the case where we already have that reference means that
we avoid a lot of these in the common case.

NOTE! This only matches remote ref names against the same local name,
which works well for tags, but is not as generic as it could be. If we
ever need to, we could match against _any_ local ref (if we have it, we
have it), but this "match against same name" is simpler and more
efficient, and covers the common case.

Renaming of refs is common for branch heads, but since those are always
commits, the pack-file generation can optimize that case.

In some cases we might still end up fetching pack-files unnecessarily, but
this at least avoids the re-fetching of tags over and over if you use a
regular

git fetch --tags ...

which was the main reason behind the change.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

No funny names on cygwin...Johannes Schindelin Tue, 18 Oct 2005 18:35:17 +0000 (11:35 -0700)

No funny names on cygwin...

On FAT/NTFS, filenames cannot contain tabs. So t3300-funny-names would
reliably fail already when trying to create such files.

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

Ignore more generated filesJohannes Schindelin Tue, 18 Oct 2005 18:35:17 +0000 (11:35 -0700)

Ignore more generated files

Since git-status now shows the "other" files, too, bring .gitignore
up-to-date.

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

Fix cvsimport warning when called without --no-cvs... Johannes Schindelin Tue, 18 Oct 2005 18:35:16 +0000 (11:35 -0700)

Fix cvsimport warning when called without --no-cvs-direct

Perl was warning that $opt_p was undefined in that case.

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

git-checkout: revert specific paths to either index... Junio C Hamano Tue, 18 Oct 2005 08:29:27 +0000 (01:29 -0700)

git-checkout: revert specific paths to either index or a given tree-ish.

When extra paths arguments are given, git-checkout reverts only those
paths to either the version recorded in the index or the version
recorded in the given tree-ish.

This has been on the TODO list for quite a while.

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

Teach git-add and git-commit to handle filenames starti... Junio C Hamano Tue, 18 Oct 2005 07:27:50 +0000 (00:27 -0700)

Teach git-add and git-commit to handle filenames starting with '-'.

Recent '--' fixes to "git diff" by Linus made it possible to specify
filenames that start with '-'. But in order to do that, you need to
be able to add and commit such file to begin with.

Teach git-add and git-commit to honor the same '--' convention.

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

Handle "-" at beginning of filenames, part 3Linus Torvalds Tue, 18 Oct 2005 07:16:45 +0000 (00:16 -0700)

Handle "-" at beginning of filenames, part 3

This fixes the default built-in exec() of "diff" to add a "--" before the
filenames, so that if a filename starts with a "-", the diff program won't
think it's an option.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Teach "git diff" to handle filenames starting with '-'Linus Torvalds Tue, 18 Oct 2005 07:16:45 +0000 (00:16 -0700)

Teach "git diff" to handle filenames starting with '-'

It adds "--" to the git-diff.sh scripts, to keep any filenames that start
with a "-" from being confused with an option.

But in order to do that, it needs to teach git-diff-files to honor "--".

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Avoid ambiguity between refname and filename in rev... Linus Torvalds Tue, 18 Oct 2005 07:16:45 +0000 (00:16 -0700)

Avoid ambiguity between refname and filename in rev-parse

Although it really is very convenient, not requiring explicit
'-r' option to name revs is sometimes ambiguous.

Usually we allow a "--" to say where a filename starts when it
_is_ ambiguous. However, we fail that at times. In particular,
git-rev-parse fails it.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

GIT 0.99.8e v0.99.8eJunio C Hamano Tue, 18 Oct 2005 00:46:35 +0000 (17:46 -0700)

GIT 0.99.8e

Linus Torvalds:
make checkout-index '-a' flag saner.

Junio C Hamano:
whatchanged: document -m option from git-diff-tree.
Functions to quote and unquote pathnames in C-style.
Update git-apply to use C-style quoting for funny pathnames.
Do not quote SP.
git-checkout-index: documentation updates.

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

Forward port the "funny ref avoidance" in clone and... Junio C Hamano Tue, 18 Oct 2005 04:47:06 +0000 (21:47 -0700)

Forward port the "funny ref avoidance" in clone and fetch from maint branch.

Somehow I forgot to forward port these fixes. "git clone" from a
repository prepared with the latest update-server-info would fail
without this patch.

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

Adjust tests for not quoting SP.Junio C Hamano Mon, 17 Oct 2005 20:32:14 +0000 (13:32 -0700)

Adjust tests for not quoting SP.

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

Do not quote SP.Junio C Hamano Mon, 17 Oct 2005 20:32:03 +0000 (13:32 -0700)

Do not quote SP.

Follow the "encode minimally" principle -- our tools, including
git-apply and git-status, can handle pathnames with embedded SP just
fine. The only problematic ones are TAB and LF, and we need to quote
the metacharacters introduced for quoting.

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

git-apply: remove unused --show-files flag.Junio C Hamano Mon, 17 Oct 2005 05:06:16 +0000 (22:06 -0700)

git-apply: remove unused --show-files flag.

Linus says he does not use it (and the thinking behind its initial
introduction), and neither Cogito nor StGIT uses it.

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

update-index --index-info: adjust for funny-path quoting.Junio C Hamano Sun, 16 Oct 2005 07:39:07 +0000 (00:39 -0700)

update-index --index-info: adjust for funny-path quoting.

Although the sole current user uses -z to read this, we should be
prepared for somebody to feed non-z format to the command.

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

Add tests for funny pathnames.Junio C Hamano Sat, 15 Oct 2005 23:15:49 +0000 (16:15 -0700)

Add tests for funny pathnames.

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

Update documentation for C-style quoting.Junio C Hamano Sat, 15 Oct 2005 04:56:46 +0000 (21:56 -0700)

Update documentation for C-style quoting.

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

Update git-status to new git-diff-* and git-ls-files... Junio C Hamano Sat, 15 Oct 2005 04:56:46 +0000 (21:56 -0700)

Update git-status to new git-diff-* and git-ls-files output.

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

Update git-diff-* to use C-style quoting for funny... Junio C Hamano Sat, 15 Oct 2005 04:56:46 +0000 (21:56 -0700)

Update git-diff-* to use C-style quoting for funny pathnames.

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

Improve "git add" again.Junio C Hamano Sat, 15 Oct 2005 04:56:46 +0000 (21:56 -0700)

Improve "git add" again.

This makes it possible to add paths that have funny characters (TAB
and LF) in them, and makes adding many paths more efficient in
general.

New flag "--stdin" to update-index was initially added for different
purpose, but it turns out to be a perfect match for feeding "ls-files
--others -z" output to improve "git add".

It also adds "--verbose" flag to update-index for use with "git add"
command.

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

Update ls-files and ls-tree to use C-style quoting... Junio C Hamano Sat, 15 Oct 2005 04:56:46 +0000 (21:56 -0700)

Update ls-files and ls-tree to use C-style quoting for funny pathnames.

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

Update git-apply to use C-style quoting for funny pathn... Junio C Hamano Sat, 15 Oct 2005 04:54:52 +0000 (21:54 -0700)

Update git-apply to use C-style quoting for funny pathnames.

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

Functions to quote and unquote pathnames in C-style.Junio C Hamano Sat, 15 Oct 2005 04:54:47 +0000 (21:54 -0700)

Functions to quote and unquote pathnames in C-style.

Following the list discussion, define two functions, quote_c_style and
unquote_c_style, to help adopting the proposed way for quoting funny
pathname letters for GNU patch. The rule is described in:

http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2

Currently we do not support the leading '!', but we probably should
barf upon seeing it. Rule B4. is interpreted to require always 3
octal digits in \XYZ notation.

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

Merge branch 'fixes'Junio C Hamano Tue, 18 Oct 2005 00:41:37 +0000 (17:41 -0700)

Merge branch 'fixes'

Merge branch 'fixes'Junio C Hamano Tue, 18 Oct 2005 00:39:11 +0000 (17:39 -0700)

Merge branch 'fixes'

git-checkout-index: documentation updates.Junio C Hamano Tue, 18 Oct 2005 00:38:09 +0000 (17:38 -0700)

git-checkout-index: documentation updates.

Now the behaviour of '-a' has been straightened out, document it.

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

make checkout-index '-a' flag saner.Linus Torvalds Tue, 18 Oct 2005 00:32:12 +0000 (17:32 -0700)

make checkout-index '-a' flag saner.

The original semantics of pretending as if all files were
specified where '-a' appeared and using only the flags given so
far was too confusing.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Do not quote SP.Junio C Hamano Mon, 17 Oct 2005 20:34:42 +0000 (13:34 -0700)

Do not quote SP.

Follow the "encode minimally" principle -- our tools, including
git-apply and git-status, can handle pathnames with embedded SP just
fine. The only problematic ones are TAB and LF, and we need to quote
the metacharacters introduced for quoting.

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

ref-format documentation.Junio C Hamano Mon, 17 Oct 2005 05:41:59 +0000 (22:41 -0700)

ref-format documentation.

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

Sparse-directory safety fix.Junio C Hamano Sun, 16 Oct 2005 21:09:50 +0000 (14:09 -0700)

Sparse-directory safety fix.

This will be removed when merging the second phase of Linus' "Create
object subdirectories on demand" change anyway, but the code to
recreate the empty .git/objects/??/ directory was confused.

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

Merge branch 'fixes'Junio C Hamano Sun, 16 Oct 2005 19:23:59 +0000 (12:23 -0700)

Merge branch 'fixes'

Merge branch 'fixes'Junio C Hamano Sun, 16 Oct 2005 19:21:38 +0000 (12:21 -0700)

Merge branch 'fixes'

We do not depend on patch.Junio C Hamano Sun, 16 Oct 2005 18:59:13 +0000 (11:59 -0700)

We do not depend on patch.

Deb packaging claim we depend on patch, but I think we use git-apply
where it matters. When a patch does not apply with git-apply, using
GNU patch still is helpful sometimes. So demote it from "Depends" to
"Suggests".

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

Merge branch 'svn' of netz.smurf.noris.de/git/gitJunio C Hamano Sun, 16 Oct 2005 18:55:35 +0000 (11:55 -0700)

Merge branch 'svn' of netz.smurf.noris.de/git/git

[jc: I have my pre-commit hook enabled to catch trailing whitespaces,
and fixed them up while merging.]

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

Update git-apply to use C-style quoting for funny pathn... Junio C Hamano Sun, 16 Oct 2005 18:05:14 +0000 (11:05 -0700)

Update git-apply to use C-style quoting for funny pathnames.

This is a backport so that maintenance branch can understand
diff output that uses C-style quoting produced by newer tools.

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

Functions to quote and unquote pathnames in C-style.Junio C Hamano Sun, 16 Oct 2005 17:58:30 +0000 (10:58 -0700)

Functions to quote and unquote pathnames in C-style.

Following the list discussion, define two functions, quote_c_style and
unquote_c_style, to help adopting the proposed way for quoting funny
pathname letters for GNU patch. The rule is described in:

http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2

Currently we do not support the leading '!', but we probably should
barf upon seeing it. Rule B4. is interpreted to require always 3
octal digits in \XYZ notation.

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

svn commit: re-word the exit-due-to-memory-leak messageMatthias Urlichs Sun, 16 Oct 2005 17:57:38 +0000 (19:57 +0200)

svn commit: re-word the exit-due-to-memory-leak message

Reworded the exit message, as per Kalle Valo's suggestion (but shorter).

Signed-Off-By: Matthias Urlichs <smurf@smurf.noris.de>

Makefile entry for git-svnimport contained a small... Kalle Valo Sun, 16 Oct 2005 17:37:25 +0000 (19:37 +0200)

Makefile entry for git-svnimport contained a small typo.

Signed-Off-By: Matthias Urlichs <smurf@smurf.noris.de>

Squelch compiler warnings from connect.cJunio C Hamano Sun, 16 Oct 2005 07:25:26 +0000 (00:25 -0700)

Squelch compiler warnings from connect.c

Forgot to include necessary header file to get the function declaration.

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

Disable hooks during tests.Junio C Hamano Sun, 16 Oct 2005 07:24:34 +0000 (00:24 -0700)

Disable hooks during tests.

Individual tests for hooks would want to have their own tests when
written. Also we should not pick up from random templates the user
happens to have.

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

Sparse fixes for http-fetchPeter Hagervall Sun, 16 Oct 2005 07:01:08 +0000 (00:01 -0700)

Sparse fixes for http-fetch

This patch cleans out all sparse warnings from http-fetch.c

I'm a bit uncomfortable with adding extra #ifdefs to avoid either
'mixing declaration with code' or 'unused variable' warnings, but I
figured that since those functions are already littered with #ifdefs I
might just get away with it. Comments?

[jc: I adjusted Peter's patch to address uncomfortableness issues.]

Signed-off-by: Peter Hagervall <hager@cs.umu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>

whatchanged: document -m option from git-diff-tree.Junio C Hamano Sun, 16 Oct 2005 06:49:27 +0000 (23:49 -0700)

whatchanged: document -m option from git-diff-tree.

The documentation for git-whatchanged is meant to describe only
the most frequently used options from git-diff-tree. Because "why
doesn't it show merges" was asked more than once, we'd better
describe '-m' option there.

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

GIT v0.99.8d v0.99.8dJunio C Hamano Sun, 16 Oct 2005 00:30:15 +0000 (17:30 -0700)

GIT v0.99.8d

Contains the following changes since v0.99.8c.

Johannes Schindelin:
Teach git-status about spaces in file names also on MacOSX
t5400-send-pack relies on a working cpio

Jonas Fonseca:
git.sh: quote all paths

Junio C Hamano:
Also force LC_ALL in test scripts.
OpenBSD needs the strcasestr replacement.
git-check-ref-format: reject funny ref names.
Refuse to create funny refs in clone-pack, git-fetch and receive-pack.
Ignore funny refname sent from remote
Introduce notation "ref^{type}".

Martin Langhoff:
cvsimport: don't pass --cvs-direct if user options contradict us

Ralf Baechle:
rsh.c: typo fix

Note that "funny ref" bits are not strictly fixes but rather
backport from the "master" branch. They will prevent refs and
heads with funny names from being created. In addition, what is
in the master branch will start feeding the clients unwrapped
tag information to help Martin's findtags and possibly later
Cogito. These backported "funny ref" changes are to prevent
clients on the "maint" branch from getting confused when talking
with newer git-upload-pack and when reading from info/refs file
prepared with newer git-update-server-info.

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

Introduce notation "ref^{type}".Junio C Hamano Sun, 16 Oct 2005 00:14:10 +0000 (17:14 -0700)

Introduce notation "ref^{type}".

Existing "tagname^0" notation means "dereference tag zero or more
times until you cannot dereference it anymore, and make sure it is a
commit -- otherwise barf". But tags do not necessarily reference
commit objects.

This commit introduces a bit more generalized notation, "ref^{type}".
Existing "ref^0" is a shorthand for "ref^{commit}". If the type
is empty, it just dereferences tags until it hits a non-tag object.

With this, "git-rev-parse --verify 'junio-gpg-pub^{}'" shows the blob
object name -- there is no need to manually read the tag object and
find out the object name anymore.

"git-rev-parse --verify 'HEAD^{tree}'" can be used to find out the
tree object name of the HEAD commit.

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

Ignore funny refname sent from remoteJunio C Hamano Sun, 16 Oct 2005 00:14:09 +0000 (17:14 -0700)

Ignore funny refname sent from remote

This allows the remote side (most notably, upload-pack) to show
additional information without affecting the downloader. Peek-remote
does not ignore them -- this is to make it useful for Pasky's
automatic tag following.

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

Refuse to create funny refs in clone-pack, git-fetch... Junio C Hamano Sun, 16 Oct 2005 00:10:14 +0000 (17:10 -0700)

Refuse to create funny refs in clone-pack, git-fetch and receive-pack.

Using git-check-ref-format, make sure we do not create refs with
funny names when cloning from elsewhere (clone-pack), fast forwarding
local heads (git-fetch), or somebody pushes into us (receive-pack).

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

git-check-ref-format: reject funny ref names.Junio C Hamano Sun, 16 Oct 2005 00:10:14 +0000 (17:10 -0700)

git-check-ref-format: reject funny ref names.

Update check_ref_format() function to reject ref names that:

* has a path component that begins with a ".", or
* has a double dots "..", or
* has ASCII control character, "~", "^", ":" or SP, anywhere, or
* ends with a "/".

Use it in 'git-checkout -b', 'git-branch', and 'git-tag' to make sure
that newly created refs are well-formed.

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

Revert "Adapt tutorial to cygwin and add test case"Junio C Hamano Sun, 16 Oct 2005 00:03:32 +0000 (17:03 -0700)

Revert "Adapt tutorial to cygwin and add test case"

This reverts 2ae6c706749b44f05917fcd04037f545d16fb345 commit.

Revert "tutorial: update the initial commit example."Junio C Hamano Sun, 16 Oct 2005 00:03:30 +0000 (17:03 -0700)

Revert "tutorial: update the initial commit example."

This reverts 5990efb0c4f6d1a19c4702bf50ef8cc5ac902a78 commit.

Show peeled onion from upload-pack and server-info.Junio C Hamano Fri, 14 Oct 2005 01:57:40 +0000 (18:57 -0700)

Show peeled onion from upload-pack and server-info.

This updates git-ls-remote to show SHA1 names of objects that are
referred by tags, in the "ref^{}" notation.

This would make git-findtags (without -t flag) almost trivial.

git-peek-remote . |
sed -ne "s:^$target "'refs/tags/\(.*\)^{}$:\1:p'

Also Pasky could do:

git-ls-remote --tags $remote |
sed -ne 's:\( refs/tags/.*\)^{}$:\1:p'

to find out what object each of the remote tags refers to, and
if he has one locally, run "git-fetch $remote tag $tagname" to
automatically catch up with the upstream tags.

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

Introduce notation "ref^{type}".Junio C Hamano Fri, 14 Oct 2005 01:57:40 +0000 (18:57 -0700)

Introduce notation "ref^{type}".

Existing "tagname^0" notation means "dereference tag zero or more
times until you cannot dereference it anymore, and make sure it is a
commit -- otherwise barf". But tags do not necessarily reference
commit objects.

This commit introduces a bit more generalized notation, "ref^{type}".
Existing "ref^0" is a shorthand for "ref^{commit}". If the type
is empty, it just dereferences tags until it hits a non-tag object.

With this, "git-rev-parse --verify 'junio-gpg-pub^{}'" shows the blob
object name -- there is no need to manually read the tag object and
find out the object name anymore.

"git-rev-parse --verify 'HEAD^{tree}'" can be used to find out the
tree object name of the HEAD commit.

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

Ignore funny refname sent from remoteJunio C Hamano Fri, 14 Oct 2005 01:57:40 +0000 (18:57 -0700)

Ignore funny refname sent from remote

This allows the remote side (most notably, upload-pack) to show
additional information without affecting the downloader. Peek-remote
does not ignore them -- this is to make it useful for Pasky's
automatic tag following.

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

Refuse to create funny refs in clone-pack, git-fetch... Junio C Hamano Fri, 14 Oct 2005 01:57:39 +0000 (18:57 -0700)

Refuse to create funny refs in clone-pack, git-fetch and receive-pack.

Using git-check-ref-format, make sure we do not create refs with
funny names when cloning from elsewhere (clone-pack), fast forwarding
local heads (git-fetch), or somebody pushes into us (receive-pack).

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

git-check-ref-format: reject funny ref names.Junio C Hamano Fri, 14 Oct 2005 01:57:39 +0000 (18:57 -0700)

git-check-ref-format: reject funny ref names.

Update check_ref_format() function to reject ref names that:

* has a path component that begins with a ".", or
* has a double dots "..", or
* has ASCII control character, "~", "^", ":" or SP, anywhere, or
* ends with a "/".

Use it in 'git-checkout -b', 'git-branch', and 'git-tag' to make sure
that newly created refs are well-formed.

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

Merge branch 'fixes'Junio C Hamano Sat, 15 Oct 2005 18:23:28 +0000 (11:23 -0700)

Merge branch 'fixes'

Merge branch 'fixes'Junio C Hamano Sat, 15 Oct 2005 18:19:09 +0000 (11:19 -0700)

Merge branch 'fixes'

Show curl error a bit better.Junio C Hamano Sat, 15 Oct 2005 18:13:55 +0000 (11:13 -0700)

Show curl error a bit better.

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

Some curl versions lack curl_easy_duphandle()Johannes Schindelin Sat, 15 Oct 2005 18:10:46 +0000 (11:10 -0700)

Some curl versions lack curl_easy_duphandle()

Hi,

On Fri, 14 Oct 2005, Junio C Hamano wrote:

> Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
>
> > This patch looks bigger than it really is: The code to get the
> > default handle was refactored into a function, and is called
> > instead of curl_easy_duphandle() if that does not exist.
>
> I'd like to take Nick's config file patch first, which
> unfortunately interferes with your patch. I'd hate to ask you
> this, but could you rebase it on top of Nick's patch, [...]

No need to hate it. Here comes the rebased patch, and this time, I
actually tested it a bit.

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

Unlocalized isspace and friendsLinus Torvalds Thu, 13 Oct 2005 18:03:18 +0000 (11:03 -0700)

Unlocalized isspace and friends

Do our own ctype.h, just to get the sane semantics: we want
locale-independence, _and_ we want the right signed behaviour. Plus we
only use a very small subset of ctype.h anyway (isspace, isalpha,
isdigit and isalnum).

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

Use config file settings for httpNick Hengeveld Sat, 15 Oct 2005 00:16:01 +0000 (17:16 -0700)

Use config file settings for http

Use "http." config file settings if they exist. Environment variables
still work, and they will override config file settings.

Signed-off-by: Nick Hengeveld <nickh@reactrix.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

git-http-fetch: Remove size limit for objects/info... Sergey Vlasov Thu, 13 Oct 2005 17:49:53 +0000 (10:49 -0700)

git-http-fetch: Remove size limit for objects/info/{packs,alternates}

git-http-fetch received objects/info/packs into a fixed-size buffer
and started to fail when this file became larger than the buffer.
Change it to grow the buffer dynamically, and do the same thing for
objects/info/alternates. Also add missing free() calls for these
buffers.

Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>
Signed-off-by: Junio C Hamano <junkio@cox.net>

debian packagingAneesh Kumar Sat, 15 Oct 2005 00:15:11 +0000 (17:15 -0700)

debian packaging

Make it build with stable testing and unstable.

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

Support git+ssh:// and ssh+git:// URLLinus Torvalds Sat, 15 Oct 2005 00:14:56 +0000 (17:14 -0700)

Support git+ssh:// and ssh+git:// URL

It seemed to be such a stupid syntax. It's both what "ssh://" means,
and it's what not specifying a protocol at _all_ means.

But hey, since we already have two ways of saying "use ssh with
pack-files", here's two more.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Add new programs and stamp file to .gitignore.Tom Prince Sat, 15 Oct 2005 00:13:49 +0000 (17:13 -0700)

Add new programs and stamp file to .gitignore.

Signed-off-by: Tom Prince <tom.prince@ualberta.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>

format-patch: take sequence of ranges.Junio C Hamano Fri, 14 Oct 2005 06:18:46 +0000 (23:18 -0700)

format-patch: take sequence of ranges.

This enhances set of revs you can give format-patch.

Originally, format-patch took either one rev, or two revs:

format-patch rev1
format-patch rev1 rev2

The first format was a short-hand for "format-patch rev1 HEAD"
(i.e. rev2==HEAD). What this meant was to find commits that are
in branch rev2 that has not been merged to branch rev1.

The above notation is still supported, but now it takes sequence
of "from1..to1 from2..to2 ...". In short, the second format has
become a short-hand for "format-patch rev1..rev2". Commits in
to1 but not in from1, to2 but not in from2, ... are formatted as
emailable patches.

With this, cherry-picking from other branch can be written as:

git-format-patch -k --stdout master..branch1 master..branch2 |
git-am -k -3

which is generally faster than traditional cherry-pick (which
always did 3-way merge) if patches apply cleanly, and still
falls back on 3-way merge if some of them do not.

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

Add "-l" flag for repacking only local packsLinus Torvalds Thu, 13 Oct 2005 22:38:29 +0000 (15:38 -0700)

Add "-l" flag for repacking only local packs

This uses the new "--local" flag to git-pack-objects. It currently only
makes a difference together with "-a", since a normal incremental repack
won't pack any packed objects at all (whether local or remote).

Eventually, it might end up skipping any objects that aren't local to
the current object directory, but for now it only knows to skip packed
objects.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Add support for "local" packingLinus Torvalds Thu, 13 Oct 2005 22:38:28 +0000 (15:38 -0700)

Add support for "local" packing

This adds the "--local" flag to git-pack-objects, which acts like
"--incremental", except that instead of ignoring all packed objects, it
only ignores objects that are packed and in an alternate object tree.

As a result, it effectively only does a local re-pack: any remote-packed
objects will stay in the alternate object directories.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Keep track of whether a pack is local or notLinus Torvalds Thu, 13 Oct 2005 22:38:28 +0000 (15:38 -0700)

Keep track of whether a pack is local or not

If we want to re-pack just local packfiles, we need to know whether a
particular object is local or not.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

tutorial: update the initial commit example.Junio C Hamano Thu, 13 Oct 2005 18:57:05 +0000 (11:57 -0700)

tutorial: update the initial commit example.

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

git-am: do not fail if 3-way fallback succeeds.Junio C Hamano Thu, 13 Oct 2005 18:46:43 +0000 (11:46 -0700)

git-am: do not fail if 3-way fallback succeeds.

The current one incorrectly stops there without committing.

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

Adapt tutorial to cygwin and add test caseJohannes Schindelin Thu, 13 Oct 2005 18:36:37 +0000 (11:36 -0700)

Adapt tutorial to cygwin and add test case

Lacking reliable symlinks, the instructions in the tutorial did not work
in a cygwin setup. Also, a few outputs were not correct.

This patch fixes these, and adds a test case which follows the
instructions of the tutorial (except git-clone, -fetch and -push, which I
have not done yet).

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

Add findtags - reworkedMartin Langhoff Thu, 13 Oct 2005 17:47:42 +0000 (10:47 -0700)

Add findtags - reworked

A short perl script that will walk the tag refs, tag objects, and even commit
objects in its quest to figure out whether the given SHA1 (for a commit or
tree) was ever tagged.

This version is reworked incorporating sanity, feature and style fixes from
Junio.

Usage: git-findtags.perl [ -t ] <commit-or-tree-sha1>

Signed-off-by: Martin Langhoff <martin@catalyst.net.nz>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Revert "Also use 'track_object_refs = 0' in update... Sergey Vlasov Thu, 13 Oct 2005 17:01:57 +0000 (10:01 -0700)

Revert "Also use 'track_object_refs = 0' in update-server-info."

This reverts d119e3de13ea1493107bd57381d0ce9c9dd90976 commit.

Object references are used in server-info.c:find_pack_info_one() to
find out which objects in the pack are heads, therefore tracking of
references cannot be disabled.

Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>
Signed-off-by: Junio C Hamano <junkio@cox.net>

rsh.c: typo fixRalf Baechle Thu, 13 Oct 2005 17:01:38 +0000 (10:01 -0700)

rsh.c: typo fix

Example in a comment used a wrong environment variable.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>

clone-pack: new option --keep tells it not to explode... Junio C Hamano Thu, 13 Oct 2005 01:12:27 +0000 (18:12 -0700)

clone-pack: new option --keep tells it not to explode the pack.

With new option --keep, or a configuration item clone.keeppack (we
need a better name, or start allowing dash,"clone.keep-pack"), the packed
data downloaded while cloning is saved as a pack in .git/objects/pack/
locally, with index generated for it with git-index-pack.

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