This page contains the following errors:

error on line 233 at column 353: invalid character in attribute value

Below is a rendering of the page up to the first error.

Andrew's git - gitweb.git/log
gitweb.git
Documentation/git-tar-tree.txt: default umask is now 002Junio C Hamano Wed, 17 Jan 2007 09:10:13 +0000 (01:10 -0800)

Documentation/git-tar-tree.txt: default umask is now 002

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

Documentation/git-tools.txt: mention tig and refer... Junio C Hamano Wed, 17 Jan 2007 09:09:41 +0000 (01:09 -0800)

Documentation/git-tools.txt: mention tig and refer to wiki

In general list at Wiki seems to be maintained a lot better than
this list.

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

Documentation/git-tag: the command can be used to also... Junio C Hamano Wed, 17 Jan 2007 09:08:30 +0000 (01:08 -0800)

Documentation/git-tag: the command can be used to also verify a tag.

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

Documentation/SubmittingPatches: Gnus tipsJunio C Hamano Wed, 17 Jan 2007 09:07:27 +0000 (01:07 -0800)

Documentation/SubmittingPatches: Gnus tips

Also warn about format=flowed (aka 'flawed').

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

git-commit: document log message formatting conventionJunio C Hamano Wed, 17 Jan 2007 06:53:28 +0000 (22:53 -0800)

git-commit: document log message formatting convention

Take it from the tutorial, since not everybody necessarily reads it.

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

cache.h; fix a couple of prototypesChris Wedgwood Wed, 17 Jan 2007 06:28:02 +0000 (22:28 -0800)

cache.h; fix a couple of prototypes

Trivial patch.

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

Document where configuration files are in config.txtJunio C Hamano Wed, 17 Jan 2007 06:45:35 +0000 (22:45 -0800)

Document where configuration files are in config.txt

Talking about what the files contain without talking about where
they are does not help new users.

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

Use merge-recursive in git-checkout -m (branch switching)Junio C Hamano Wed, 17 Jan 2007 04:46:39 +0000 (20:46 -0800)

Use merge-recursive in git-checkout -m (branch switching)

This allows "git checkout -m <other-branch>" to notice renames and
carry local changes in the working tree forward.

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

git-commit documentation: remove comment on unfixed... Junio C Hamano Wed, 17 Jan 2007 00:36:54 +0000 (16:36 -0800)

git-commit documentation: remove comment on unfixed git-rm

... which was fixed since then.

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

tutorial: shorthand for remotes but show distributed... Junio C Hamano Wed, 17 Jan 2007 00:10:14 +0000 (01:10 +0100)

tutorial: shorthand for remotes but show distributed nature of git

* Promiscous pull shows the distributed nature of git better.
* Add a new step after that to teach "remote add".
* Highlight that with the shorthand defined you will get
remote tracking branches for free.
* Fix Alice's workflow.

Signed-off-by: Santi Béjar <sbejar@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

tutorial: Use only separate layoutSanti Béjar Wed, 17 Jan 2007 00:09:12 +0000 (01:09 +0100)

tutorial: Use only separate layout

Then the newbies only have to understand one layout.

Signed-off-by: Santi Béjar <sbejar@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>

Fix spurious compile errorJohannes Schindelin Tue, 16 Jan 2007 21:10:54 +0000 (22:10 +0100)

Fix spurious compile error

From time to time, I would get this error:

[...]
sed: -e expression #8, char 41: Unterminated `s' command
make: *** [git-add--interactive] Error 1

Turns out that the function WriteMakefile() called in Makefile.PL
outputs the message "Writing perl.mak for Git" to stdout! Thus,
the output of "make -C perl -s --no-print-directory instlibdir"
would be prefixed by that message whenever Makefile.PL was newer
than perl.mak.

This is fixed by redirecting stdout to stderr in Makefile.PL.

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

git-rm documentation: remove broken behaviour from... Junio C Hamano Tue, 16 Jan 2007 19:50:29 +0000 (11:50 -0800)

git-rm documentation: remove broken behaviour from the example.

The example section were talking about the old broken default
behaviour. Correct it.

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

git-push documentation: remaining bitsJunio C Hamano Tue, 16 Jan 2007 19:46:03 +0000 (11:46 -0800)

git-push documentation: remaining bits

Mention --thin, --no-thin, --repo and -v.

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

document --exec for git-push