git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Junio C Hamano <junkio@cox.net>
To: git@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Subject: [ANNOUNCE] GIT 1.4.3
Date: Wed, 18 Oct 2006 16:53:22 -0700	[thread overview]
Message-ID: <7vejt5xjt9.fsf@assigned-by-dhcp.cox.net> (raw)

The latest feature release GIT 1.4.3 is available at the usual
places:

  http://www.kernel.org/pub/software/scm/git/

  git-1.4.3.tar.{gz,bz2}			(tarball)
  git-htmldocs-1.4.3.tar.{gz,bz2}		(preformatted docs)
  git-manpages-1.4.3.tar.{gz,bz2}		(preformatted docs)
  RPMS/$arch/git-*-1.4.3-1.$arch.rpm	(RPM)

Please holler if i386 RPMs are broken, since they are not cut on
the machine I am used to use (I ended up burning half a day
installing and futzing with FC5 on my older laptop resurrected
from the boneyard).

User visible changes, other than bugfixes, since v1.4.2.4 are:

 - upload-tar is deprecated but not removed; we now have
   upload-archive --format=tar and --format=zip instead.

 - ftp:// protocol is supported the same way as http:// and
   https://

 - git-diff paginates its output to the tty by default.  If this
   irritates you, using LESS=RF might help.

 - git-cherry-pick does not leave often useless "cherry-picked
   from" message.

 - git-merge-recursive was replaced by a rewritten implemention
   in C.  The original Python implementation is available as
   "recursive-old" strategy for now, but hopefully we can remove
   it in the next cycle.

 - git-daemon can do name based virtual hosting.

 - git-daemon can serve tar and zip snapshots.

 - many gitweb tweaks and cleanups.

 - git-apply --reverse, --reject.

 - git-diff --color highlights whitespace errors.

 - git-diff --stat can be taught to use non-default widths.

 - git-status can use colors.

 - many more commands are built-in.

----------------------------------------------------------------

 .gitignore                                         |   10 +-
 Documentation/Makefile                             |    4 +-
 Documentation/asciidoc.conf                        |    1 +
 Documentation/config.txt                           |   34 +
 Documentation/core-tutorial.txt                    |    2 +-
 Documentation/cvs-migration.txt                    |    2 +-
 Documentation/diff-options.txt                     |   10 +-
 Documentation/git-apply.txt                        |   69 +-
 .../{git-tar-tree.txt => git-archive.txt}          |   93 +-
 Documentation/git-blame.txt                        |   29 +-
 Documentation/git-cherry-pick.txt                  |   23 +-
 Documentation/git-daemon.txt                       |  135 +-
 Documentation/git-grep.txt                         |   15 +-
 Documentation/git-http-push.txt                    |    2 +-
 Documentation/git-init-db.txt                      |    4 +
 Documentation/git-ls-remote.txt                    |   18 +-
 Documentation/git-pack-objects.txt                 |   26 +-
 Documentation/git-receive-pack.txt                 |    2 +
 Documentation/git-repack.txt                       |   13 +-
 Documentation/git-repo-config.txt                  |    3 +-
 Documentation/git-rev-list.txt                     |  428 ++-
 Documentation/git-rev-parse.txt                    |    2 +-
 Documentation/git-send-pack.txt                    |    2 +-
 Documentation/git-shortlog.txt                     |   17 +-
 Documentation/git-svn.txt                          |  399 ++-
 Documentation/git-tar-tree.txt                     |    3 +
 Documentation/git-unpack-objects.txt               |    8 +-
 Documentation/git-update-index.txt                 |    4 +-
 .../{git-upload-tar.txt => git-upload-archive.txt} |   24 +-
 Documentation/git.txt                              |   37 +-
 Documentation/gitk.txt                             |  151 +-
 Documentation/glossary.txt                         |    4 +-
 Documentation/hooks.txt                            |   56 +-
 Documentation/technical/racy-git.txt               |  193 +
 Documentation/tutorial-2.txt                       |    2 +-
 GIT-VERSION-GEN                                    |    2 +-
 INSTALL                                            |   15 +-
 Makefile                                           |  297 +-
 builtin-tar-tree.c => archive-tar.c                |  229 +-
 archive-zip.c                                      |  333 ++
 archive.h                                          |   47 +
 blame.c                                            |   19 +-
 builtin-apply.c                                    |  708 +++-
 builtin-archive.c                                  |  263 ++
 builtin-cat-file.c                                 |   40 +-
 checkout-index.c => builtin-checkout-index.c       |   29 +-
 builtin-commit-tree.c                              |    2 +-
 builtin-count.c => builtin-count-objects.c         |    2 +-
 builtin-diff-files.c                               |    7 -
 builtin-diff-stages.c                              |    2 +-
 builtin-diff.c                                     |   16 +-
 builtin-fmt-merge-msg.c                            |   39 +-
 builtin-grep.c                                     |  650 +---
 builtin-init-db.c                                  |    1 +
 builtin-log.c                                      |    7 +-
 builtin-ls-files.c                                 |   27 +-
 builtin-ls-tree.c                                  |    6 +-
 builtin-mailinfo.c                                 |   17 +-
 builtin-mv.c                                       |   12 +-
 name-rev.c => builtin-name-rev.c                   |    8 +-
 pack-objects.c => builtin-pack-objects.c           |  439 ++-
 builtin-prune-packed.c                             |    2 +-
 builtin-prune.c                                    |    4 +-
 builtin-push.c                                     |   32 +-
 builtin-read-tree.c                                |  865 +----
 builtin-repo-config.c                              |   34 +-
 builtin-rev-list.c                                 |  171 +-
 builtin-rev-parse.c                                |   10 +-
 builtin-rm.c                                       |    2 +-
 builtin-runstatus.c                                |   36 +
 builtin-show-branch.c                              |   18 +-
 symbolic-ref.c => builtin-symbolic-ref.c           |    8 +-
 builtin-tar-tree.c                                 |  439 +--
 unpack-objects.c => builtin-unpack-objects.c       |   78 +-
 builtin-update-index.c                             |   18 +-
 builtin-update-ref.c                               |    2 +-
 builtin-upload-archive.c                           |  175 +
 builtin-upload-tar.c                               |   74 -
 verify-pack.c => builtin-verify-pack.c             |   15 +-
 builtin-write-tree.c                               |    4 +-
 builtin.h                                          |   86 +-
 cache-tree.c                                       |   14 +-
 cache.h                                            |   68 +-
 check-racy.c                                       |   28 +
 color.c                                            |  176 +
 color.h                                            |   12 +
 combine-diff.c                                     |   41 +-
 commit.c                                           |   51 +-
 commit.h                                           |    2 +-
 compat/inet_pton.c                                 |  220 +
 config.c                                           |   18 +-
 config.mak.in                                      |   18 +
 configure.ac                                       |  561 ++-
 connect.c                                          |   50 +-
 contrib/completion/git-completion.bash             |  324 ++
 contrib/emacs/git.el                               |    4 +-
 contrib/emacs/vc-git.el                            |    6 +-
 contrib/gitview/gitview.txt                        |   56 +-
 contrib/vim/README                                 |    8 +
 contrib/vim/syntax/gitcommit.vim                   |   18 +
 convert-objects.c                                  |    8 +-
 csum-file.c                                        |    6 +-
 daemon.c                                           |  431 ++-
 date.c                                             |  132 +-
 describe.c                                         |   14 +-
 diff-delta.c                                       |    4 +-
 diff-lib.c                                         |   32 +-
 diff.c                                             |  666 ++-
 diff.h                                             |   15 +-
 diffcore-break.c                                   |    2 +-
 diffcore-rename.c                                  |    2 +-
 dir.c                                              |   48 +-
 dir.h                                              |    1 +
 dump-cache-tree.c                                  |    2 +-
 entry.c                                            |    4 +-
 environment.c                                      |   20 +-
 exec_cmd.c                                         |   20 +-
 fetch-clone.c                                      |   33 +-
 fetch-pack.c                                       |   24 +-
 fetch.c                                            |    9 +-
 fsck-objects.c                                     |   44 +-
 generate-cmdlist.sh                                |    1 +
 git-branch.sh                                      |   10 +
 git-checkout.sh                                    |    9 +-
 git-cherry.sh                                      |    3 -
 git-clone.sh                                       |    8 +-
 git-commit.sh                                      |  582 +--
 git-compat-util.h                                  |   18 +-
 git-cvsexportcommit.perl                           |    2 +-
 git-cvsserver.perl                                 |   65 +-
 git-fetch.sh                                       |   26 +-
 git-ls-remote.sh                                   |    6 +-
 ...erge-recursive.py => git-merge-recursive-old.py |    0 
 git-merge.sh                                       |    5 +-
 git-parse-remote.sh                                |   43 +-
 git-pull.sh                                        |    2 +-
 git-rebase.sh                                      |    6 +-
 git-repack.sh                                      |   25 +-
 git-reset.sh                                       |    3 -
 git-resolve.sh                                     |    4 +
 git-revert.sh                                      |   14 +-
 git-send-email.perl                                |   42 +-
 git-shortlog.perl                                  |   44 +-
 git-svn.perl                                       |  122 +-
 git-svnimport.perl                                 |   35 +-
 git.c                                              |  131 +-
 git.spec.in                                        |   23 +-
 gitk                                               |  682 +++-
 gitweb/README                                      |   61 +-
 gitweb/git-favicon.png                             |  Bin
 gitweb/git-logo.png                                |  Bin
 gitweb/gitweb.css                                  |   80 +-
 gitweb/{gitweb.cgi => gitweb.perl}                 | 4459 ++++++++++++--------
 grep.c                                             |  498 +++
 grep.h                                             |   79 +
 builtin-help.c => help.c                           |    4 +-
 http-fetch.c                                       |  303 +--
 http-push.c                                        |   95 +-
 http.c                                             |   12 +
 http.h                                             |    4 +
 imap-send.c                                        |   45 +-
 index-pack.c                                       |   16 +-
 interpolate.c                                      |  108 +
 interpolate.h                                      |   26 +
 builtin-prune.c => list-objects.c                  |  255 +-
 list-objects.h                                     |   12 +
 local-fetch.c                                      |    8 +-
 log-tree.c                                         |   82 +-
 merge-base.c                                       |    2 +-
 merge-file.c                                       |    2 +-
 merge-index.c                                      |    5 +-
 merge-recursive.c                                  | 1351 ++++++
 merge-tree.c                                       |   10 +-
 mktag.c                                            |    2 +-
 mktree.c                                           |    5 +-
 object-refs.c                                      |   11 +-
 object.c                                           |    6 +-
 object.h                                           |   11 -
 pack-check.c                                       |   25 +-
 pack-redundant.c                                   |   18 +-
 pager.c                                            |    4 +-
 patch-id.c                                         |    2 +-
 path-list.c                                        |    5 +-
 path.c                                             |   10 +-
 peek-remote.c                                      |    5 +-
 perl/.gitignore                                    |    4 +
 perl/Git.pm                                        |  837 ++++
 perl/Makefile.PL                                   |   28 +
 perl/private-Error.pm                              |  827 ++++
 quote.c                                            |   61 +
 quote.h                                            |    7 +
 read-cache.c                                       |   77 +-
 receive-pack.c                                     |   28 +-
 refs.c                                             |   26 +-
 revision.c                                         |  258 +-
 revision.h                                         |   14 +-
 rsh.c                                              |   31 +-
 run-command.c                                      |    8 +-
 send-pack.c                                        |  126 +-
 server-info.c                                      |    2 +-
 setup.c                                            |    2 +
 sha1_file.c                                        |  596 ++--
 sha1_name.c                                        |   60 +-
 sideband.c                                         |   78 +
 sideband.h                                         |   13 +
 ssh-fetch.c                                        |   10 +-
 ssh-upload.c                                       |    4 +-
 t/t1200-tutorial.sh                                |    2 +-
 t/t1400-update-ref.sh                              |   86 +-
 t/t3200-branch.sh                                  |   12 +
 t/t3403-rebase-skip.sh                             |    4 +-
 t/t3700-add.sh                                     |   22 +
 t/t4015-diff-whitespace.sh                         |  122 +
 t/t4103-apply-binary.sh                            |    4 +-
 t/t4104-apply-boundary.sh                          |  115 +
 t/t4116-apply-reverse.sh                           |   85 +
 t/t4117-apply-reject.sh                            |  157 +
 t/t5400-send-pack.sh                               |   14 +
 t/t5510-fetch.sh                                   |   69 +
 t/t5600-clone-fail-cleanup.sh                      |    6 +
 t/t5710-info-alternate.sh                          |    2 +
 t/t6001-rev-list-graft.sh                          |  113 +
 t/t7002-grep.sh                                    |   31 +-
 t/t7201-co.sh                                      |    9 +
 t/test-lib.sh                                      |   17 +-
 trace.c                                            |  150 +
 tree-diff.c                                        |   15 +-
 tree-walk.c                                        |    4 +-
 tree.c                                             |    5 +-
 builtin-read-tree.c => unpack-trees.c              |  474 +--
 unpack-trees.h                                     |   35 +
 upload-pack.c                                      |  190 +-
 write_or_die.c                                     |   45 +
 wt-status.c                                        |  276 ++
 wt-status.h                                        |   25 +
 xdiff-interface.c                                  |   12 +-
 xdiff/xutils.c                                     |   29 +-
 237 files changed, 16898 insertions(+), 8168 deletions(-)
 copy Documentation/{git-tar-tree.txt => git-archive.txt} (29%)
 rewrite Documentation/git-rev-list.txt (61%)
 rename Documentation/{git-upload-tar.txt => git-upload-archive.txt} (30%)
 rewrite Documentation/gitk.txt (37%)
 create mode 100644 Documentation/technical/racy-git.txt
 copy builtin-tar-tree.c => archive-tar.c (59%)
 create mode 100644 archive-zip.c
 create mode 100644 archive.h
 create mode 100644 builtin-archive.c
 rename builtin-cat-file.c => builtin-cat-file.c (0%)
 rename checkout-index.c => builtin-checkout-index.c (92%)
 rename builtin-count.c => builtin-count-objects.c (99%)
 rename name-rev.c => builtin-name-rev.c (97%)
 rename pack-objects.c => builtin-pack-objects.c (81%)
 create mode 100644 builtin-runstatus.c
 rename symbolic-ref.c => builtin-symbolic-ref.c (75%)
 rename unpack-objects.c => builtin-unpack-objects.c (82%)
 create mode 100644 builtin-upload-archive.c
 delete mode 100644 builtin-upload-tar.c
 rename verify-pack.c => builtin-verify-pack.c (83%)
 create mode 100644 check-racy.c
 create mode 100644 color.c
 create mode 100644 color.h
 create mode 100644 compat/inet_pton.c
 rewrite configure.ac (21%)
 create mode 100755 contrib/completion/git-completion.bash
 rename contrib/gitview/{gitview.txt => gitview.txt} (74%)
 create mode 100644 contrib/vim/README
 create mode 100644 contrib/vim/syntax/gitcommit.vim
 rename git-merge-recursive.py => git-merge-recursive-old.py (100%)
 create mode 100644 gitweb/git-favicon.png
 create mode 100644 gitweb/git-logo.png
 rename gitweb/{gitweb.cgi => gitweb.perl} (30%)
 create mode 100644 grep.c
 create mode 100644 grep.h
 rename builtin-help.c => help.c (99%)
 create mode 100644 interpolate.c
 create mode 100644 interpolate.h
 copy builtin-prune.c => list-objects.c (24%)
 create mode 100644 list-objects.h
 create mode 100644 merge-recursive.c
 create mode 100644 perl/.gitignore
 create mode 100644 perl/Git.pm
 create mode 100644 perl/Makefile.PL
 create mode 100644 perl/private-Error.pm
 create mode 100644 sideband.c
 create mode 100644 sideband.h
 create mode 100755 t/t4015-diff-whitespace.sh
 create mode 100755 t/t4104-apply-boundary.sh
 create mode 100755 t/t4116-apply-reverse.sh
 create mode 100755 t/t4117-apply-reject.sh
 create mode 100755 t/t5510-fetch.sh
 create mode 100755 t/t6001-rev-list-graft.sh
 create mode 100644 trace.c
 copy builtin-read-tree.c => unpack-trees.c (62%)
 create mode 100644 unpack-trees.h
 create mode 100644 write_or_die.c
 create mode 100644 wt-status.c
 create mode 100644 wt-status.h

Alan Chandler (2):
      Update the gitweb/README file to include setting the GITWEB_CONFIG environment
      Fix usage string to match that given in the man page

Alex Riesen (3):
      Use const for interpolate arguments
      fix daemon.c compilation for NO_IPV6=1
      do not discard constness in interp_set_entry value argument

Alexandre Julliard (2):
      git.el: Fixed inverted "renamed from/to" message.
      vc-git.el: Switch to using git-blame instead of git-annotate.

Andy Whitcroft (4):
      send-pack: remove remote reference limit
      send-pack: switch to using git-rev-list --stdin
      svnimport: add support for parsing From: lines for author
      add proper dependancies on the xdiff source

Aneesh Kumar K.V (4):
      gitweb: Support for snapshot
      gitweb: fix snapshot support
      gitweb: Make blame and snapshot a feature.
      gitweb: Fix git_blame

Art Haas (1):
      Patch for http-fetch.c and older curl releases

Christian Couder (9):
      Trace into open fd and refactor tracing code.
      Trace into a file or an open fd and refactor tracing code.
      Update GIT_TRACE documentation.
      Fix memory leak in prepend_to_path (git.c).
      Move add_to_string to "quote.c" and make it extern.
      Fix a memory leak in "connect.c" and die if command too long.
      Fix space in string " false" problem in "trace.c".
      Remove empty ref directories that prevent creating a ref.
      Fix tracing when GIT_TRACE is set to an empty string.

David Rientjes (18):
      blame.c return cleanup
      builtin-grep.c cleanup
      builtin-push.c cleanup
      diff.c cleanup
      http-push.c cleanup
      read-cache.c cleanup
      Make pprint_tag void and cleans up call in cmd_cat_file.
      Make show_entry void
      Make checkout_all void.
      Make fsck_dir void.
      Make pack_objects void.
      Make track_tree_refs void.
      Make upload_pack void and remove conditional return.
      Make sha1flush void and remove conditional return.
      make inline is_null_sha1 global
      use appropriate typedefs
      remove unnecessary initializations
      Do not use memcmp(sha1_1, sha1_2, 20) with hardcoded length.

Dennis Stosberg (12):
      "test" in Solaris' /bin/sh does not support -e
      Makefile fix for Solaris
      Add possibility to pass CFLAGS and LDFLAGS specific to the perl subdir
      Solaris has strlcpy() at least since version 8
      Look for sockaddr_storage in sys/socket.h
      Fix detection of ipv6 on Solaris
      Fix compilation with Sun CC
      gitweb: Use --git-dir parameter instead of setting $ENV{'GIT_DIR'}
      gitweb: Remove forgotten call to git_to_hash
      use do() instead of require() to include configuration
      lock_ref_sha1_basic does not remove empty directories on BSD
      Add default values for --window and --depth to the docs

Dmitry V. Levin (3):
      Make count-objects, describe and merge-tree work in subdirectory
      Documentation: Fix broken links
      Handle invalid argc gently

Eric Wong (13):
      pass DESTDIR to the generated perl/Makefile
      git-svn: establish new connections on commit after fork
      git-svn: recommend rebase for syncing against an SVN repo
      git-svn: add the 'dcommit' command
      git-svn: stop repeatedly reusing the first commit message with dcommit
      git-svn: multi-init saves and reuses --tags and --branches arguments
      git-svn: log command fixes
      Documentation/git-svn: document some of the newer features
      git-svn: -h(elp) message formatting fixes
      commit: fix a segfault when displaying a commit with unreachable parents
      git-svn: add a message encouraging use of SVN::* libraries
      git-svn: fix commits over svn+ssh://
      git-svn: reduce memory usage for large commits

Franck Bui-Huu (11):
      Add a newline before appending "Signed-off-by: " line
      log-tree.c: cleanup a bit append_signoff()
      Add git-archive
      git-archive: wire up TAR format.
      git-archive: wire up ZIP format.
      Add git-upload-archive
      connect.c: finish_connect(): allow null pid parameter
      Test return value of finish_connect()
      upload-archive: monitor child communication even more carefully.
      git-archive: update documentation
      Add git-upload-archive to the main git man page

Haavard Skinnemoen (1):
      git-send-email: Don't set author_not_sender from Cc: lines

Jakub Narebski (139):
      gitweb: whitespace cleanup
      gitweb: Use list for of open for running git commands, thorougly.
      gitweb: simplify git_get_hash_by_path
      gitweb: More explicit error messages for open "-|"
      gitweb: Cleanup - chomp $line in consistent style
      gitweb: Cleanup - chomp @lines in consistent style
      gitweb: Add git_page_nav for later use
      gitweb: Navbar refactoring - use git_page_nav to generate navigation bar
      gitweb: Replace form-feed character by ^L
      gitweb: Show project descriptions with utf-8 characters in project list correctly
      gitweb: Add "\n" after <br/> in git_page_nav
      gitweb: Pager refactoring - use git_get_paging_nav for pagination
      gitweb: Remove $project from git_get_paging_nav arguments
      gitweb: Headers refactoring - use git_header_div for header divs
      gitweb: Remove characters entities entirely when shortening string
      gitweb: Ref refactoring - use git_get_referencing for marking tagged/head commits
      gitweb: Refactor generation of shortlog, tags and heads body
      gitweb: do not quote path for list version of open "-|"
      gitweb: Remove characters entities entirely when shortening string -- correction
      gitweb: Reordering code and dividing it into categories
      gitweb: Refactoring git_project_list
      autoconf: Add support for setting SHELL_PATH and PERL_PATH
      autoconf: Move site configuration section earlier in configure.ac
      autoconf: Add support for setting PYTHON_PATH or NO_PYTHON
      autoconf: Check for ll hh j z t size specifiers introduced by C99
      autoconf: Typo cleanup, reordering etc.
      Copy description of new build configuration variables to configure.ac
      autoconf: Set NEEDS_LIBICONV unconditionally if there is no iconv in libc
      gitweb: Separate input validation and dispatch, add comment about opml action
      gitweb: die_error first (optional) parameter is HTTP status
      gitweb: Use undef for die_error to use default first (status) parameter value
      gitweb: Don't undefine query parameter related variables before die_error
      gitweb: Cleanup and uniquify error messages
      gitweb: No periods for error messages
      gitweb: No error messages with unescaped/unprotected user input
      gitweb: PATH_INFO=/ means no project
      gitweb: Inline $rss_link
      gitweb: Refactor untabifying - converting tabs to spaces
      gitweb: fix commitdiff for root commits
      gitweb: Skip nonmatching lines in difftree output, consistently
      autoconf: Unset NO_STH and NEED_STH when it is detected not needed
      gitweb: Remove unused variables in git_shortlog_body and git_heads
      autoconf: Add configure target to main Makefile
      autoconf: Error out on --without-shell and --without-perl
      autoconf: Improvements in NO_PYTHON/PYTHON_PATH handling
      autoconf: Move variables which we always set to config.mak.in
      autoconf: It is --without-python, not --no-python
      autoconf: Add support for setting CURLDIR, OPENSSLDIR, EXPATDIR
      gitweb: Whitespace cleanup - tabs are for indent, spaces are for align
      gitweb: Great subroutines renaming
      gitweb: Separate ref parsing in git_get_refs_list into parse_ref
      gitweb: Refactor printing shortened title in git_shortlog_body and git_tags_body
      gitweb: Separate main part of git_history into git_history_body
      gitweb: Separate finding project owner into git_get_project_owner
      gitweb: Change appereance of marker of refs pointing to given object
      gitweb: Skip comments in mime.types like file
      gitweb: True fix: Support for the standard mime.types map in gitweb
      gitweb: Separate printing difftree in git_commit into git_difftree_body
      gitweb: Show project's git URL on summary page
      gitweb: Add support for per project git URLs
      gitweb: Uniquify version info output, add meta generator in page header
      gitweb: Refactor printing commit message
      gitweb: Added parse_difftree_raw_line function for later use
      gitweb: Use parse_difftree_raw_line in git_difftree_body
      gitweb: bugfix: a.list formatting regression
      gitweb: Replace some presentational HTML by CSS
      gitweb: Whitespace cleanup: realign, reindent
      gitweb: Use underscore instead of hyphen to separate words in HTTP headers names
      gitweb: Route rest of action subroutines through %actions
      gitweb: Use here-doc
      gitweb: Drop the href() params which keys are not in %mapping
      gitweb: Sort CGI parameters returned by href()
      gitweb: Use git-diff-tree patch output for commitdiff
      gitweb: Show information about incomplete lines in commitdiff
      gitweb: Remove invalid comment in format_diff_line
      gitweb: Streamify patch output in git_commitdiff
      gitweb: Add git_get_{following,preceding}_references functions
      gitweb: Faster return from git_get_preceding_references if possible
      gitweb: Add git_get_rev_name_tags function
      gitweb: Use git_get_name_rev_tags for commitdiff_plain X-Git-Tag: header
      gitweb: Add support for hash_parent_base parameter for blobdiffs
      gitweb: Allow for pre-parsed difftree info in git_patchset_body
      gitweb: Parse two-line from-file/to-file diff header in git_patchset_body
      gitweb: Add invisible hyperlink to from-file/to-file diff header
      gitweb: Always display link to blobdiff_plain in git_blobdiff
      gitweb: Change here-doc back for style consistency in git_blobdiff
      gitweb: Use git-diff-tree or git-diff patch output for blobdiff
      gitweb: git_blobdiff_plain is git_blobdiff('plain')
      gitweb: Remove git_diff_print subroutine
      gitweb: Remove creating directory for temporary files
      gitweb: git_annotate didn't expect negative numeric timezone
      gitweb: Remove workaround for git-diff bug fixed in f82cd3c
      gitweb: Improve comments about gitweb features configuration
      gitweb: blobs defined by non-textual hash ids can be cached
      gitweb: Fix typo in git_difftree_body
      gitweb: Fix typo in git_patchset_body
      gitweb: Remove unused git_get_{preceding,following}_references
      gitweb: Remove git_to_hash function
      gitweb: Use @diff_opts, default ('M'), as git-diff and git-diff-tree paramete
      gitweb: Make git_print_log generic; git_print_simplified_log uses it
      gitweb: Do not remove signoff lines in git_print_simplified_log
      gitweb: Add author information to commitdiff view
      gitweb: git_print_log: signoff line is non-empty line
      gitweb: Add diff tree, with links to patches, to commitdiff view
      gitweb: Add local time and timezone to git_print_authorship
      gitweb: Move git-ls-tree output parsing to parse_ls_tree_line
      gitweb: Separate printing of git_tree row into git_print_tree_entry
      gitweb: Extend parse_difftree_raw_line to save commit info
      gitweb: Change the name of diff to parent link in "commit" view to "diff
      gitweb: Add GIT favicon, assuming image/png type
      gitweb: Correct typo: '==' instead of 'eq' in git_difftree_body
      gitweb: Divide page path into directories -- path's "breadcrumbs"
      autoconf: Add -liconv to LIBS when NEEDS_LIBICONV
      autoconf: Check for subprocess.py
      autoconf: Quote AC_CACHE_CHECK arguments
      autoconf: Fix copy'n'paste error
      autoconf: Set NO_ICONV if iconv is found neither in libc, nor in libiconv
      autoconf: Add support for setting NO_ICONV and ICONVDIR
      autoconf: Add config.cache to .gitignore
      gitweb: Make pickaxe search a feature
      gitweb: Paginate history output
      gitweb: Use File::Find::find in git_get_projects_list
      gitweb: Do not parse refs by hand, use git-peek-remote instead
      gitweb: Add git_project_index for generating index.aux
      gitweb: Allow for href() to be used for links without project param
      gitweb: Add link to "project_index" view to "project_list" page
      gitweb: Fix mimetype_guess_file for files with multiple extensions
      gitweb: Even more support for PATH_INFO based URLs
      gitweb: Require project for almost all actions
      gitweb: Always use git-peek-remote in git_get_references
      gitweb: Make git_get_refs_list do work of git_get_references
      gitweb: Fix thinko in git_tags and git_heads
      gitweb: Make git_get_hash_by_path check type if provided
      gitweb: Strip trailing slashes from $path in git_get_hash_by_path
      gitweb: Use "return" instead of "return undef" for some subs
      gitweb: Split validate_input into validate_pathname and validate_refname
      gitweb: Add git_url subroutine, and use it to quote full URLs
      gitweb: Quote filename in HTTP Content-Disposition: header
      gitweb: Cleanup Git logo and Git logo target generation

Jeff King (9):
      gitweb: optionally read config from GITWEB_CONFIG
      diff: support custom callbacks for output
      Move color option parsing out of diff.c and into color.[ch]
      git-commit.sh: convert run_status to a C builtin
      git-status: document colorization config options
      contrib/vim: add syntax highlighting file for commits
      wt-status: remove extraneous newline from 'deleted:' output
      rev-list: fix segfault with --{author,committer,grep}
      git-repack: allow git-repack to run in subdirectory

Johannes Schindelin (38):
      Git.xs: older perl do not know const char *
      Status update on merge-recursive in C
      Cumulative update of merge-recursive in C
      merge-recur: Convert variable names to lower_case
      merge-recur: Get rid of debug code
      merge-recur: Remove dead code
      merge-recur: Fix compiler warning with -pedantic
      merge-recur: Cleanup last mixedCase variables...
      merge-recur: Explain why sha_eq() and struct stage_data cannot go
      merge-recur: fix thinko in unique_path()
      read-trees: refactor the unpack_trees() part
      read-tree: move merge functions to the library
      merge-recur: use the unpack_trees() interface instead of exec()ing read-tree
      merge-recur: virtual commits shall never be parsed
      merge-recursive: fix rename handling
      http-push: avoid fork() by calling merge_bases() directly
      merge-recur: do not call git-write-tree
      merge-recur: do not setenv("GIT_INDEX_FILE")
      merge-recur: if there is no common ancestor, fake empty one
      merge-recur: try to merge older merge bases first
      merge-recur: do not die unnecessarily
      discard_cache(): discard index, even if no file was mmap()ed
      Add the --color-words option to the diff options family
      builtin-mv: readability patch
      unpack-objects: remove unused variable "eof"
      Makefile: fix typo
      Remove uneeded #include
      fmt-merge-msg: fix off-by-one bug
      Teach runstatus about --untracked
      add receive.denyNonFastforwards config variable
      receive-pack: plug memory leak in fast-forward checking code.
      Document receive.denyNonFastforwards
      runstatus: do not recurse into subdirectories if not needed
      daemon: default to 256 for HOST_NAME_MAX if it is not defined
      diff --stat: ensure at least one '-' for deletions, and one '+' for additions
      diff: fix 2 whitespace issues
      cvsserver: Show correct letters for modified, removed and added files
      cvsserver: fix "cvs diff" in a subdirectory

Jon Loeliger (3):
      Add virtualization support to git-daemon
      Cleaned up git-daemon virtual hosting support.
      Removed memory leaks from interpolation table uses.

Jonas Fonseca (21):
      git-apply(1): document missing options and improve existing ones
      git-ls-remote(1): document --upload-pack
      git-blame(1): mention options in the synopsis and advertise pickaxe
      gitk(1): expand the manpage to look less like a template
      git(7): put the synopsis in a verse style paragraph
      gitview.txt: improve asciidoc markup
      git-svn(1): improve asciidoc markup
      describe: fix off-by-one error in --abbrev=40 handling
      Use PATH_MAX instead of MAXPATHLEN
      Use xrealloc instead of realloc
      Use fstat instead of fseek
      Use xcalloc instead of calloc
      Add --relative-date option to the revision interface
      git(7): move gitk(1) to the list of porcelain commands
      Use xmalloc instead of malloc
      Include config.mak.autogen in the doc Makefile
      git-rev-list(1): group options; reformat; document more options
      git-apply(1): document --unidiff-zero
      git-repack(1): document --window and --depth
      Fix trivial typos and inconsistencies in hooks documentation
      gitk(1): mention --all

Junio C Hamano (139):
      Perl interface: add build-time configuration to allow building with -fPIC
      Perl interface: make testsuite work again.
      perl: fix make clean
      Git.pm: tentative fix to test the freshly built Git.pm
      Perly Git: arrange include path settings properly.
      Makefile: Set USE_PIC on x86-64
      Perly git: work around buggy make implementations.
      Git.pm: clean generated files.
      Perly Git: make sure we do test the freshly built one.
      INSTALL: a tip for running after building but without installing.
      Work around sed and make interactions on the backslash at the end of line.
      upload-pack: use object pointer not copy of sha1 to keep track of has/needs.
      upload-pack: lift MAX_NEEDS and MAX_HAS limitation
      recur vs recursive: help testing without touching too many stuff.
      sha1_file.c: expose map_sha1_file() interface.
      pack-objects: reuse deflated data from new-style loose objects.
      unpack-objects: read configuration data upon startup.
      Makefile: git-merge-recur depends on xdiff libraries.
      gitweb: There can be more than two levels of subdirectories
      gitweb: an obvious cut and paste error.
      gitweb: fix use of uninitialized value.
      gitweb: when showing history of a tree, show tree link not blob
      gitweb: avoid undefined value warning in print_page_path
      gitweb/README: do not bug Kay with gitweb questions anymore
      Makefile: gitweb/gitweb.cgi is now generated.
      gitweb: do not use @@FOO@@ for replaced tokens
      .gitignore: git-merge-recur is a built file.
      Make git-checkout-index a builtin
      builtins: Makefile clean-up
      git.c: Rename NEEDS_PREFIX to RUN_SETUP
      autoconf: fix NEEDS_SSL_WITH_CRYPTO
      autoconf: NO_IPV6
      Racy git: avoid having to be always too careful
      read-cache: tweak racy-git delay logic
      autoconf: clean temporary file mak.append
      git-grep: show pathnames relative to the current directory
      upload-pack: minor clean-up in multi-ack logic
      Fix type of combine-diff.c::show_patch_diff()
      Remove combine-diff.c::uninteresting()
      t4116 apply --reverse test
      git-apply --reverse: simplify reverse option.
      git-apply --binary: clean up and prepare for --reverse
      avoid nanosleep(2)
      Documentation/technical/racy-git.txt
      Add check program "git-check-racy"
      Remove the "delay writing to avoid runtime penalty of racy-git avoidance"
      builtin-grep: remove unused debugging cruft.
      builtin-apply --reverse: two bugfixes.
      diff.c: make binary patch reversible.
      apply --reverse: tie it all together.
      git-apply --reject
      git-apply --reject: send rejects to .rej files.
      git-apply --verbose
      apply --reject: count hunks starting from 1, not 0
      Convert memset(hash,0,20) to hashclr(hash).
      hashcpy/hashcmp remaining bits.
      builtin-grep.c: remove unused debugging piece.
      update-index -g
      git-apply --reject: finishing touches.
      free(NULL) is perfectly valid.
      daemon: prepare for multiple services.
      daemon: add upload-tar service.
      multi-service daemon: documentation
      t5710: fix two thinkos.
      Constness tightening for move/link_temp_to_file()
      consolidate two copies of new style object header parsing code.
      pack-objects: re-validate data we copy from elsewhere.
      Revert "Convert git-annotate to use Git.pm"
      Revert "Git.pm: Introduce fast get_object() method"
      Revert "Make it possible to set up libgit directly (instead of from the environment)"
      pack-objects: fix thinko in revalidate code
      more lightweight revalidation while reusing deflated stream in packing
      unpack-objects desperately salvages objects from a corrupt pack
      revision.c: allow injecting revision parameters after setup_revisions().
      Teach rev-list an option to read revs from the standard input.
      Revert "daemon: add upload-tar service."
      Make apply --binary a no-op.
      diff --binary generates full index on binary files.
      Separate object listing routines out of rev-list
      pack-objects: run rev-list equivalent internally.
      pack-objects: further work on internal rev-list logic.
      pack-objects --unpacked=<existing pack> option.
      get_sha1_hex() micro-optimization
      archive: allow remote to have more formats than we understand.
      Move sideband client side support into reusable form.
      Move sideband server side support into reusable form.
      archive: force line buffered output to stderr
      Add --verbose to git-archive
      Teach --exec to git-archive --remote
      Prepare larger packet buffer for upload-pack protocol.
      Add sideband status report to git-archive protocol
      upload-archive: monitor child communication more carefully.
      builtin-archive.c: rename remote_request() to extract_remote_arg()
      pack-objects: document --revs, --unpacked and --all.
      http-fetch: fix alternates handling.
      unpack-objects -r: call it "recover".
      Document git-grep -[Hh]
      Define fallback PATH_MAX on systems that do not define one in <limits.h>
      Fix git-am safety checks
      http-fetch.c: consolidate code to detect missing fetch target
      Add ftp:// protocol support for git-http-fetch
      t1400: make test debuggable.
      apply --unidiff-zero: loosen sanity checks for --unidiff=0 patches
      builtin-grep: make pieces of it available as library.
      revision traversal: prepare for commit log match.
      revision traversal: --author, --committer, and --grep.
      repack: use only pack-objects, not rev-list.
      Update grep internal for grepping only in head/body
      git log: Unify header_filter and message_filter into one.
      Make hexval() available to others.
      sha1_name.c: understand "describe" output as a valid object name
      diff.c: second war on whitespace.
      git-apply: second war on whitespace.
      Add t5510 to test per branch configuration affecting git-fetch.
      Remove upload-tar and make git-tar-tree a thin wrapper to git-archive
      Deprecate merge-recursive.py
      diff --stat: allow custom diffstat output width.
      diff --stat: color output.
      An illustration of rev-list --parents --pretty=raw
      grep: free expressions and patterns when done.
      grep: fix --fixed-strings combined with expression.
      Contributed bash completion support for core Git tools.
      git-diff -B output fix.
      Remove -fPIC which was only needed for Git.xs
      GIT 1.4.3-rc1
      Makefile: install and clean merge-recur, still.
      escape tilde in Documentation/git-rev-parse.txt
      tar-tree deprecation: we eat our own dog food.
      gitweb: Make the Git logo link target to point to the homepage
      git-send-email: avoid uninitialized variable warning.
      cherry-pick: make -r the default
      Add WEBDAV timeout to http-fetch.
      Fix git-revert
      git-fetch --update-head-ok typofix
      git-pull: we say commit X, not X commit.
      git.spec.in: perl subpackage is installed in perl_vendorlib not vendorarch
      apply --numstat -z: line termination fix.
      t4015: work-around here document problem on Cygwin.
      Revert "move pack creation to version 3"

Linus Torvalds (10):
      Relative timestamps in git log
      git-fsck-objects: lacking default references should not be fatal
      Fix git-fsck-objects SIGSEGV/divide-by-zero
      Add "-h/-H" parsing to "git grep"
      Allow multiple "git_path()" uses
      git-log --author and --committer are not left-anchored by default
      Clean up approxidate() in preparation for fixes
      Fix approxidate() to understand more extended numbers
      diff --stat=width[,name-width]: allow custom diffstat output width.
      Fix approxidate() to understand 12:34 AM/PM are 00:34 and 12:34

Liu Yubao (1):
      Fix duplicate xmalloc in builtin-add

Luben Tuikov (22):
      gitweb: git_tree displays blame based on repository config
      gitweb: bugfix: git_commit and git_commitdiff parents
      gitweb: blame table row no highlight fix
      gitweb: bugfix: commitdiff regression
      gitweb: bugfix: git_print_page_path() needs the hash base
      gitweb: tree view: eliminate redundant "blob"
      gitweb: Remove redundant "tree" link
      gitweb: extend blame to show links to diff and previous
      Revert "gitweb: extend blame to show links to diff and previous"
      gitweb: Remove excessively redundant entries from git_difftree_body
      gitweb: Add history and blame to git_difftree_body()
      gitweb: "alternate" starts with shade (i.e. 1)
      gitweb: Remove redundant "commit" link from shortlog
      gitweb: Factor out gitweb_have_snapshot()
      gitweb: Add snapshot to shortlog
      gitweb: Don't use quotemeta on internally generated strings
      gitweb: Remove redundant "commit" from history
      gitweb: History: blob and tree are first, then commitdiff, etc
      gitweb: tree view: hash_base and hash are now context sensitive
      gitweb: Escape ESCAPE (\e) character
      gitweb: Do not print "log" and "shortlog" redundantly in commit view
      gitweb: blame: Minimize vertical table row padding

Markus Amsler (1):
      git-imap-send: Strip smtp From_ header from imap message.

Martin Langhoff (1):
      git-repack: create new packs inside $GIT_DIR, not cwd

Martin Waitz (16):
      gitweb: fill in gitweb configuration by Makefile
      gitweb: use out-of-line GIT logo.
      gitweb: provide function to format the URL for an action link.
      gitweb: consolidate action URL generation.
      gitweb: continue consolidation of URL generation.
      gitweb: support for "fp" parameter.
      gitweb: support for / as home_link.
      gitweb: fix project list if PATH_INFO=="/".
      gitweb: more support for PATH_INFO based URLs
      gitweb: fix uninitialized variable warning.
      gitweb: fix display of trees via PATH_INFO.
      gitweb: document webserver configuration for common gitweb/repo URLs.
      git-commit: cleanup unused function.
      git-commit: fix coding style.
      test-lib: separate individual test better in verbose mode.
      paginate git-diff by default

Matthias Kestenholz (6):
      Make git-name-rev a builtin
      Make git-pack-objects a builtin
      Make git-unpack-objects a builtin
      Make git-symbolic-ref a builtin
      Add gitweb.cgi to .gitignore
      Check if pack directory exists prior to descending into it

Matthias Lederhofer (12):
      pager: environment variable GIT_PAGER to override PAGER
      gitweb: use a hash to lookup the sub for an action
      gitweb: require $ENV{'GITWEB_CONFIG'}
      gitweb: check if HTTP_ACCEPT is really set
      gitweb: fix commitdiff_plain for root commits
      gitweb: fix $project usage
      gitweb: do not use 'No such directory' error message
      gitweb: export options
      gitweb: fix warnings in PATH_INFO code and add export_ok/strict_export
      gitweb fix validating pg (page) parameter
      format-patch: use cwd as default output directory
      git-format-patch: fix bug using -o in subdirectories

Nicolas Pitre (4):
      move pack creation to version 3
      many cleanups to sha1_file.c
      add commit count options to git-shortlog
      atomic write for sideband remote messages

Paul Mackerras (10):
      gitk: Minor cleanups
      gitk: Recompute ancestor/descendent heads/tags when rereading refs
      gitk: Add a row context-menu item for creating a new branch
      gitk: Add a context menu for heads
      gitk: Fix a couple of buglets in the branch head menu items
      gitk: Add a menu item for cherry-picking commits
      gitk: Update preceding/following tag info when creating a tag
      gitk: Improve responsiveness while reading and layout out the graph
      gitk: Fix some bugs in the new cherry-picking code
      diff-index --cc shows a 3-way diff between HEAD, index and working tree.

Pavel Roskin (3):
      Fix probing for already installed Error.pm
      Delete manuals if compiling without docs
      Make perl interface a separate package

Petr Baudis (48):
      Introduce Git.pm (v4)
      Git.pm: Implement Git::exec_path()
      Git.pm: Call external commands using execv_git_cmd()
      Git.pm: Implement Git::version()
      Add Error.pm to the distribution
      Git.pm: Better error handling
      Git.pm: Handle failed commands' output
      Git.pm: Enhance the command_pipe() mechanism
      Git.pm: Implement options for the command interface
      Git.pm: Add support for subdirectories inside of working copies
      Convert git-mv to use Git.pm
      Git.pm: assorted build related fixes.
      Git.pm: Try to support ActiveState output pipe
      Git.pm: Swap hash_object() parameters
      Git.pm: Fix Git->repository("/somewhere/totally/elsewhere")
      Git.pm: Support for perl/ being built by a different compiler
      Git.pm: Remove PerlIO usage from Git.xs
      Git.pm: Avoid ppport.h
      Git.pm: Don't #define around die
      Use $GITPERLLIB instead of $RUNNING_GIT_TESTS and centralize @INC munging
      Git.pm: Add config() method
      Convert git-send-email to use Git.pm
      Git.pm: Introduce ident() and ident_person() methods
      Make it possible to set up libgit directly (instead of from the environment)
      Git.pm: Introduce fast get_object() method
      Convert git-annotate to use Git.pm
      Eliminate Scalar::Util usage from private-Error.pm
      Fix showing of path in tree view
      gitweb: Link (HEAD) tree for each project from projects list
      gitweb: More per-view navigation bar links
      gitweb: Link to tree instead of snapshot in shortlog
      gitweb: Link to latest tree from the head line in heads list
      gitweb: Link to associated tree from a particular log item in full log view
      gitweb: Rename "plain" labels to "raw"
      gitweb: Relabel "head" as "HEAD"
      Make path in tree view look nicer
      gitweb: Fix tree link associated with each commit log entry.
      gitweb: Fix @git_base_url_list usage
      Fix snapshot link in tree view
      Git.pm: Kill Git.xs for now
      Deprecate git-resolve.sh
      gitweb: Consolidate escaping/validation of query string
      gitweb: fix over-eager application of esc_html().
      Show snapshot link in shortlog only if have_snapsho
      gitweb: Separate (new) and (deleted) in commitdiff by a space
      gitweb: Handle commits with empty commit messages more reasonably
      gitweb: [commit view] Do not suppress commitdiff link in root commit
      svnimport: Fix broken tags being generated

Pierre Habouzit (7):
      Fix a comparison bug in diff-delta.c
      avoid to use error that shadows the function name, use err instead.
      git_dir holds pointers to local strings, hence MUST be const.
      missing 'static' keywords
      remove ugly shadowing of loop indexes in subloops.
      use name[len] in switch directly, instead of creating a shadowed variable.
      n is in fact unused, and is later shadowed.

Randal L. Schwartz (1):
      builtin-upload-archive.c broken on openbsd

Rene Scharfe (21):
      git-verify-pack: make builtin
      Axe the last ent
      Add write_or_die(), a helper function
      Add git-zip-tree
      git-cherry: remove unused variable
      git-reset: remove unused variable
      Add git-zip-tree to .gitignore
      git-archive: make compression level of ZIP archives configurable
      Use xstrdup instead of strdup in builtin-{tar,zip}-tree.c
      git-archive: inline default_parse_extra()
      git-tar-tree: devolve git-tar-tree into a wrapper for git-archive
      Remove git-zip-tree
      Rename builtin-zip-tree.c to archive-zip.c
      git-tar-tree: Remove duplicate git_config() call
      git-tar-tree: Move code for git-archive --format=tar to archive-tar.c
      git-tar-tree: don't RUN_SETUP
      Documentation: add missing second colons and remove a typo
      Add hash_sha1_file()
      Make write_sha1_file_prepare() static
      Make write_sha1_file_prepare() void
      Replace open-coded version of hash_sha1_file()

Robin Rosenberg (3):
      Quote arguments to tr in test-lib
      Make cvsexportcommit remove files.
      Error in test description of t1200-tutorial

Santi Béjar (4):
      Fetch: default remote repository from branch properties
      fetch: get the remote branches to merge from the branch properties
      Add test for the default merges in fetch.
      fetch: Reset remote refs list each time fetch_main is called

Sasha Khapyorsky (3):
      Trivial support for cloning and fetching via ftp://.
      git-svnimport: Parse log message for Signed-off-by: lines
      http/ftp: optionally ask curl to not use EPSV command

Sergey Vlasov (2):
      Documentation: Fix howto/revert-branch-rebase.html generation
      git-svn: Fix fetch --no-ignore-externals with GIT_SVN_NO_LIB=1

Shawn Pearce (15):
      Verify we know how to read a pack before trying to using it.
      Remove unnecessary forward declaration of unpack_entry.
      Convert memcpy(a,b,20) to hashcpy(a,b).
      Convert memcpy(a,b,20) to hashcpy(a,b).
      Reorganize/rename unpack_non_delta_entry to unpack_compressed_entry.
      Reuse compression code in unpack_compressed_entry.
      Cleanup unpack_entry_gently and friends to use type_name array.
      Cleanup unpack_object_header to use only offsets.
      Convert unpack_entry_gently and friends to use offsets.
      Replace uses of strdup with xstrdup.
      Allow 'svn fetch' on '(no date)' revisions in Subversion.
      Allow '(no author)' in git-svn's authors file.
      Ignore executable bit when adding files if filemode=0.
      Allow git-checkout when on a non-existant branch.
      Corrected copy-and-paste thinko in ignore executable bit test case.

Tilman Sauerbeck (2):
      Indentation fix.
      Added support for dropping privileges to git-daemon.

Timo Hirvonen (2):
      --name-only, --name-status, --check and -s are mutually exclusive
      Remove awkward compatibility warts

Ville Skyttä (1):
      Be nicer if git executable is not installed

Yasushi SHOJI (4):
      gitweb: configurable home link string
      gitweb: Decode long title for link tooltips
      gitweb: refactor decode() for utf8 conversion
      clone: the given repository dir should be relative to $PWD

             reply	other threads:[~2006-10-18 23:53 UTC|newest]

Thread overview: 1570+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-10-18 23:53 Junio C Hamano [this message]
2006-10-20 12:31 ` [ANNOUNCE] GIT 1.4.3 Horst H. von Brand
2006-10-20 13:26 ` Peter Eriksen
2006-10-20 23:35 ` Junio C Hamano
2006-10-21  0:14   ` Linus Torvalds
2006-10-21  0:22     ` Petr Baudis
2006-10-21  0:31       ` Linus Torvalds
2006-10-21  9:53       ` Andreas Schwab
2006-10-22 21:09       ` Anders Larsen
2006-10-21  2:12     ` Al Viro
2006-10-21  5:29       ` Junio C Hamano
2006-10-21  5:40         ` Al Viro
2006-10-21 14:29       ` Rene Scharfe
2006-10-21  0:47   ` Nicolas Pitre
2006-10-23  0:53   ` prune/prune-packed J. Bruce Fields
2006-10-23  1:26     ` prune/prune-packed A Large Angry SCM
2006-10-23  2:36       ` [ANNOUNCE] GIT 1.4.3 J. Bruce Fields
2006-10-23  3:27       ` prune/prune-packed Junio C Hamano
2006-10-23 18:39         ` prune/prune-packed Petr Baudis
2006-10-27 21:19         ` prune/prune-packed Jon Loeliger
2006-10-27 21:55           ` prune/prune-packed Junio C Hamano
  -- strict thread matches above, loose matches on Subject: below --
2006-11-15  3:53 Sometimes "Failed to find remote refs" means "try git-fetch --no-tags" Michael K. Edwards
2006-11-15  4:05 ` Junio C Hamano
2006-11-15 21:13   ` Horst H. von Brand
2006-11-14 16:42 [PATCH] commit: Steer new users toward "git commit -a" rather than update-index Carl Worth
2006-11-14 18:55 ` Andy Whitcroft
2006-11-14 19:22   ` Cleaning up git user-interface warts Carl Worth
2006-11-14 19:29     ` Shawn Pearce
2006-11-14 19:59       ` Carl Worth
2006-11-14 19:47     ` Petr Baudis
2006-11-14 20:56       ` Carl Worth
2006-11-15  0:31         ` Junio C Hamano
2006-11-15  4:08           ` Petr Baudis
2006-11-15  4:33             ` Junio C Hamano
2006-11-15  4:46               ` Nicolas Pitre
2006-11-15 10:09                 ` Jakub Narebski
2006-11-15 10:15                   ` Santi Béjar
2006-11-15 10:28                     ` Jakub Narebski
2006-11-16  2:43                       ` Petr Baudis
2006-11-15 14:56                   ` Nicolas Pitre
2006-11-15 20:39               ` Petr Baudis
2006-11-15 10:05             ` Jakub Narebski
2006-11-15 10:25               ` Karl Hasselström
2006-11-15 20:51           ` Carl Worth
2006-11-15 20:57             ` Jakub Narebski
2006-11-15 22:00               ` Shawn Pearce
2006-11-15 22:17                 ` Carl Worth
2006-11-14 20:46     ` Karl Hasselström
2006-11-14 20:52     ` Nicolas Pitre
2006-11-14 21:01       ` Jakub Narebski
2006-11-14 21:32         ` Nicolas Pitre
2006-11-14 22:04           ` Jakub Narebski
2006-11-14 22:29             ` Nicolas Pitre
2006-11-14 21:10       ` Carl Worth
2006-11-14 21:30         ` Jakub Narebski
2006-11-14 21:34           ` Nicolas Pitre
2006-11-14 22:56             ` Junio C Hamano
2006-11-15  1:48               ` Nicolas Pitre
2006-11-15  2:10                 ` Junio C Hamano
2006-11-15  2:27                   ` Michael K. Edwards
2006-11-15  4:20                   ` Nicolas Pitre
2006-11-15  4:58                     ` Junio C Hamano
2006-11-15 18:03                     ` Linus Torvalds
2006-11-15 18:28                       ` Jakub Narebski
2006-11-15 20:31                         ` Josef Weidendorfer
2006-11-15 20:35                           ` Petr Baudis
2006-11-15 21:12                             ` Josef Weidendorfer
2006-11-15 21:31                               ` Linus Torvalds
2006-11-15 18:43                       ` Nicolas Pitre
2006-11-15 18:49                         ` Shawn Pearce
2006-11-15 19:05                           ` Marko Macek
2006-11-15 20:41                             ` Junio C Hamano
2006-11-15 22:07                               ` Shawn Pearce
2006-11-16  6:07                               ` Marko Macek
2006-11-16 10:36                                 ` Junio C Hamano
2006-11-15 22:28                             ` Sean
     [not found]                             ` <20061115172834.0a328154.seanlkml@sympatico.ca>
2006-11-16  3:07                               ` Petr Baudis
2006-11-15 18:58                       ` Andy Parkins
2006-11-15 19:18                         ` Linus Torvalds
2006-11-15 19:39                           ` Michael K. Edwards
2006-11-15 20:09                             ` Linus Torvalds
2006-11-15 20:21                               ` Nicolas Pitre
2006-11-15 20:40                                 ` Linus Torvalds
2006-11-15 21:08                                   ` Carl Worth
2006-11-15 21:31                                     ` Junio C Hamano
2006-11-15 21:40                                       ` Nicolas Pitre
2006-11-15 21:52                                         ` Junio C Hamano
2006-11-15 21:59                                           ` Nicolas Pitre
2006-11-15 21:45                                     ` Linus Torvalds
2006-11-15 22:52                                       ` Carl Worth
2006-11-15 23:02                                         ` Shawn Pearce
2006-11-15 23:33                                           ` Linus Torvalds
2006-11-16  0:08                                             ` Nicolas Pitre
2006-11-16  3:07                                               ` Linus Torvalds
2006-11-16  3:43                                                 ` Nicolas Pitre
2006-11-16  3:02                                             ` Michael K. Edwards
2006-11-16 11:35                                               ` Andreas Ericsson
2006-11-16 16:37                                             ` Carl Worth
2006-11-16 17:57                                               ` Michael K. Edwards
2006-11-16 18:23                                                 ` Carl Worth
2006-11-15 23:07                                         ` Sean
     [not found]                                         ` <20061115180722.83ff8990.seanlkml@sympatico.ca>
2006-11-15 23:15                                           ` Shawn Pearce
2006-11-16  7:51                                             ` Richard CURNOW
2006-11-16 23:01                                               ` Johannes Schindelin
2006-11-16  4:26                                   ` Theodore Tso
2006-11-16 11:50                                     ` Andreas Ericsson
2006-11-16 16:30                                       ` Linus Torvalds
2006-11-16 17:01                                         ` Carl Worth
2006-11-16 17:30                                           ` Linus Torvalds
2006-11-16 17:44                                             ` Sean
2006-11-16  1:40                           ` Anand Kumria
2006-11-15 19:32                         ` Junio C Hamano
2006-11-16  1:14                       ` Theodore Tso
2006-11-16  4:21                         ` Junio C Hamano
2006-11-16 11:34                           ` Alexandre Julliard
2006-11-16 14:01                             ` Petr Baudis
2006-11-16 15:48                               ` Alexandre Julliard
2006-11-16 16:07                           ` Theodore Tso
2006-11-16 16:49                             ` Theodore Tso
2006-11-16  1:20                       ` Han-Wen Nienhuys
2006-11-16  1:53                         ` Jakub Narebski
2006-11-16  2:03                         ` Junio C Hamano
2006-11-16  2:30                           ` Han-Wen Nienhuys
2006-11-16  3:27                             ` Junio C Hamano
2006-11-16  3:35                               ` Junio C Hamano
2006-11-16  4:07                               ` Junio C Hamano
2006-11-16  3:12                         ` Linus Torvalds
2006-11-16 10:31                           ` Junio C Hamano
2006-11-16 10:45                           ` Han-Wen Nienhuys
2006-11-16 11:11                             ` Junio C Hamano
2006-11-16 11:47                               ` Junio C Hamano
2006-11-16 13:03                               ` Han-Wen Nienhuys
2006-11-16 13:11                                 ` Han-Wen Nienhuys
2006-11-16 16:23                             ` Linus Torvalds
2006-11-16 16:42                               ` Han-Wen Nienhuys
2006-11-16 17:17                                 ` Linus Torvalds
2006-11-16 17:40                                   ` multi-project repos (was Re: Cleaning up git user-interface warts) Han-Wen Nienhuys
2006-11-16 18:21                                     ` Linus Torvalds
2006-11-16 18:33                                       ` multi-project repos Junio C Hamano
2006-11-16 19:01                                       ` multi-project repos (was Re: Cleaning up git user-interface warts) Linus Torvalds
2006-11-16 22:21                                       ` Johannes Schindelin
2006-11-16 22:44                                         ` multi-project repos Junio C Hamano
2006-11-17  0:29                                           ` Johannes Schindelin
2006-11-16 22:49                                         ` multi-project repos (was Re: Cleaning up git user-interface warts) Linus Torvalds
2006-11-16 23:08                                           ` Linus Torvalds
2006-11-16 23:36                                           ` Johannes Schindelin
2006-11-17  0:49                                             ` Linus Torvalds
2006-11-16 23:40                                           ` Han-Wen Nienhuys
2006-11-16 23:32                                       ` Han-Wen Nienhuys
2006-11-16 17:57                                   ` Cleaning up git user-interface warts Linus Torvalds
2006-11-16 18:27                                     ` Junio C Hamano
2006-11-16 18:28                                     ` Linus Torvalds
2006-11-16 19:47                                       ` Junio C Hamano
2006-11-16 19:53                                         ` Linus Torvalds
2006-11-16 18:13                                   ` Carl Worth
2006-11-16 23:00                           ` Johannes Schindelin
2006-11-16 23:22                             ` Linus Torvalds
2006-11-17  0:05                               ` Han-Wen Nienhuys
2006-11-17  0:13                                 ` Junio C Hamano
2006-11-17  0:27                                   ` Han-Wen Nienhuys
2006-11-17  0:35                                     ` Petr Baudis
2006-11-17  0:37                                   ` Carl Worth
2006-11-17  0:39                                 ` Linus Torvalds
2006-11-17  0:52                                   ` Han-Wen Nienhuys
2006-11-16  4:30                       ` Petr Baudis
2006-11-15 20:12                   ` Petr Baudis
2006-11-15 20:26                     ` Nicolas Pitre
2006-11-15 20:50                       ` Linus Torvalds
2006-11-15 21:18                         ` Nicolas Pitre
2006-11-16  1:51                       ` Anand Kumria
2006-11-14 22:36         ` Junio C Hamano
2006-11-14 22:50           ` Junio C Hamano
2006-11-15  4:32             ` Nicolas Pitre
2006-11-15  5:35               ` Junio C Hamano
2006-11-15  6:18                 ` Shawn Pearce
2006-11-15  6:30                   ` Junio C Hamano
2006-11-15 14:01                 ` Johannes Schindelin
2006-11-15 15:03                   ` Sean
2006-11-15 15:10                   ` Nicolas Pitre
2006-11-15 18:16                     ` Junio C Hamano
2006-11-15 19:02                       ` Andy Parkins
2006-11-15 19:41                         ` Junio C Hamano
2006-11-15 20:15                           ` Nicolas Pitre
2006-11-15 20:19                           ` Carl Worth
2006-11-15 21:13                             ` Junio C Hamano
2006-11-15 22:36                               ` Carl Worth
2006-11-16  3:21                                 ` Petr Baudis
2006-11-16 10:09                                   ` Robin Rosenberg
2006-11-16 13:46                                     ` Petr Baudis
2006-11-16  0:23                       ` Han-Wen Nienhuys
2006-11-15  9:17               ` Andy Parkins
2006-11-15  9:59                 ` Jakub Narebski
2006-11-15 10:33                   ` Andy Parkins
2006-11-15 10:48                     ` Karl Hasselström
2006-11-15 11:28                       ` Andy Parkins
2006-11-15 15:41                 ` Nicolas Pitre
2006-11-15 17:59                   ` Junio C Hamano
2006-11-15 18:11                     ` Nicolas Pitre
2006-11-16 13:21                       ` Karl Hasselström
2006-11-15 17:55                 ` Junio C Hamano
2006-11-15 19:14                   ` Andy Parkins
2006-11-16  3:53                 ` Petr Baudis
2006-11-15 12:15               ` Andreas Ericsson
2006-11-15 12:31                 ` Jakub Narebski
2006-11-16 13:58               ` Petr Baudis
2006-11-16  5:12           ` Petr Baudis
2006-11-16 10:45             ` Junio C Hamano
2006-11-16 13:43               ` Petr Baudis
2006-11-16 21:49             ` Junio C Hamano
2006-11-16 22:20               ` Petr Baudis
2006-11-17  0:11             ` Han-Wen Nienhuys
2006-11-14 23:30   ` [PATCH] commit: Steer new users toward "git commit -a" rather than update-index Junio C Hamano
2006-11-06  9:08 [PATCH] git-pickaxe -C -C -C Junio C Hamano
2006-11-06 16:46 ` Horst H. von Brand
2006-11-06 17:25   ` Junio C Hamano
2006-10-27 17:26 Generating docu in 1.4.3.3.g01929 Horst H. von Brand
2006-10-27 19:44 ` Sean
     [not found]   ` <20061027154433.da9b29d7.seanlkml@sympatico.ca>
2006-10-27 23:12     ` Horst H. von Brand
2006-10-28  4:24       ` Sean
2006-10-28  5:45         ` Junio C Hamano
2006-10-28  6:07           ` Sean
2006-10-28 19:04             ` Junio C Hamano
2006-10-28 19:13               ` Sean
2006-10-28 19:22                 ` Junio C Hamano
2006-10-29 19:03               ` Horst H. von Brand
2006-10-27 21:34 ` Junio C Hamano
2006-10-27 12:29 Creating new repos Horst H. von Brand
2006-10-27 12:39 ` Petr Baudis
2006-10-27 17:08   ` Horst H. von Brand
2006-10-28 14:19     ` Jakub Narebski
2006-10-25 22:22 Combined diff format documentation Jakub Narebski
2006-10-25 22:40 ` Junio C Hamano
2006-10-25 22:58   ` Jakub Narebski
2006-10-25 23:14     ` Junio C Hamano
2006-10-25 23:24     ` Junio C Hamano
2006-10-25 23:45   ` Jakub Narebski
2006-10-26  1:48   ` Horst H. von Brand
2006-10-26  3:04     ` Junio C Hamano
2006-10-26  3:44   ` [PATCH] diff-format.txt: Combined diff format documentation supplement Jakub Narebski
2006-10-26  6:15     ` Junio C Hamano
2006-10-26  7:05       ` Junio C Hamano
2006-10-26  7:10         ` Junio C Hamano
2006-10-25  0:07 [PATCH] xdiff: Do not consider lines starting by # hunkworthy Petr Baudis
2006-10-25  0:16 ` Junio C Hamano
2006-10-25  0:28   ` [PATCH] xdiff: Match GNU diff behaviour when deciding hunk comment worthiness of lines Petr Baudis
2006-10-25  1:33     ` Horst H. von Brand
2006-10-25  2:18       ` Junio C Hamano
2006-10-25  0:17 ` [PATCH] xdiff: Do not consider lines starting by # hunkworthy Jakub Narebski
2006-10-22  3:59 prune/prune-packed J. Bruce Fields
2006-10-22  4:59 ` prune/prune-packed Junio C Hamano
2006-10-22 23:14   ` prune/prune-packed J. Bruce Fields
2006-10-20  9:04 Signed git-tag doesn't find default key Andy Parkins
2006-10-20 16:32 ` Linus Torvalds
2006-10-20 19:21   ` Andy Parkins
2006-10-21  0:52     ` Horst H. von Brand
2006-10-21  7:44       ` Andy Parkins
2006-10-14 15:07 VCS comparison table Jon Smirl
2006-10-14 16:40 ` Jakub Narebski
2006-10-14 17:18   ` Jon Smirl
2006-10-14 17:42     ` Jakub Narebski
2006-10-16  3:53   ` Martin Pool
2006-10-22 15:50     ` Jakub Narebski
2006-10-16 22:26   ` Aaron Bentley
2006-10-16 22:35     ` Andy Whitcroft
2006-10-16 22:53       ` Jakub Narebski
2006-10-16 23:19     ` Jakub Narebski
2006-10-16 23:39       ` Nguyen Thai Ngoc Duy
2006-10-17  4:56       ` Aaron Bentley
2006-10-17  5:20         ` Shawn Pearce
2006-10-17  8:21           ` Martin Pool
2006-10-17  8:15         ` Jakub Narebski
2006-10-17  8:16         ` Andreas Ericsson
2006-10-17 20:01           ` Aaron Bentley
2006-10-17 21:01             ` Jakub Narebski
2006-10-17 21:27               ` Aaron Bentley
2006-10-17 21:51                 ` Jakub Narebski
2006-10-17 22:28                   ` Aaron Bentley
2006-10-17 22:57                     ` Jakub Narebski
2006-10-17 22:59                       ` Jakub Narebski
2006-10-17 23:16                       ` Linus Torvalds
2006-10-18  5:36                         ` Jeff King
2006-10-18  5:57                           ` Junio C Hamano
2006-10-18 14:52                           ` Linus Torvalds
2006-10-18 18:52                             ` [ANNOUNCE] Example Cogito Addon - cogito-bundle Petr Baudis
2006-10-18 18:59                               ` Petr Baudis
2006-10-18 19:04                                 ` Junio C Hamano
2006-10-18 19:13                                   ` Nicolas Pitre
2006-10-18 19:18                                     ` Shawn Pearce
2006-10-18 19:33                                       ` Nicolas Pitre
2006-10-18 20:46                                         ` Shawn Pearce
2006-10-18 21:17                                           ` Linus Torvalds
2006-10-18 21:32                                             ` Shawn Pearce
2006-10-18 21:42                                               ` Junio C Hamano
2006-10-18 21:52                                                 ` Shawn Pearce
2006-10-18 22:02                                                   ` Junio C Hamano
2006-10-18 21:55                                               ` Linus Torvalds
2006-10-18 22:05                                                 ` Shawn Pearce
2006-10-18 22:07                                                 ` Junio C Hamano
2006-10-18 21:41                                             ` Nicolas Pitre
2006-10-18 21:41                                             ` Shawn Pearce
2006-10-18 22:00                                               ` Linus Torvalds
2006-10-18 22:11                                                 ` Shawn Pearce
2006-10-18 22:13                                               ` Junio C Hamano
2006-10-18 22:42                                                 ` Linus Torvalds
2006-10-18 22:48                                                   ` Junio C Hamano
2006-10-18 23:22                                                     ` Shawn Pearce
2006-10-18 23:18                                                   ` Nicolas Pitre
2006-10-18 23:50                                                     ` Johannes Schindelin
2006-10-19  0:07                                                     ` Linus Torvalds
2006-10-19  0:15                                                       ` Linus Torvalds
2006-10-19  0:31                                                       ` Johannes Schindelin
2006-10-19  0:46                                                         ` Linus Torvalds
2006-10-19  3:01                                                       ` Nicolas Pitre
2006-10-19  3:46                                                       ` Junio C Hamano
2006-10-19 14:27                                                         ` Nicolas Pitre
2006-10-19 14:55                                                         ` Linus Torvalds
2006-10-19 16:07                                                           ` Jan Harkes
2006-10-19 16:48                                                             ` Linus Torvalds
2006-10-20  0:20                                                               ` Jan Harkes
2006-10-20 14:41                                                                 ` Jeff King
2006-10-20  0:20                                                               ` [PATCH 1/2] Pass through unresolved deltas when writing a pack Jan Harkes
2006-10-20  0:20                                                               ` [PATCH 2/2] Remove unused index tracking code Jan Harkes
2006-10-20  1:11                                                                 ` Nicolas Pitre
2006-10-20  1:35                                                                   ` Junio C Hamano
2006-10-20  2:27                                                                   ` Jan Harkes
2006-10-20  2:30                                                                     ` Junio C Hamano
2006-10-20  2:46                                                                       ` Jan Harkes
2006-10-20  3:36                                                                     ` Nicolas Pitre
2006-10-18 21:56                                             ` [ANNOUNCE] Example Cogito Addon - cogito-bundle Junio C Hamano
2006-10-18 19:33                                     ` Junio C Hamano
2006-10-18 20:47                                       ` Shawn Pearce
2006-10-18 19:09                                 ` Nicolas Pitre
2006-10-18 20:08                                 ` Linus Torvalds
     [not found]                               ` <20061018155704.b94b441d.seanlkml@sympatico.ca>
2006-10-18 19:57                                 ` Sean
2006-10-18 20:46                                 ` Petr Baudis
     [not found]                                   ` <20061018165341.bcece11f.seanlkml@sympatico.ca>
2006-10-18 20:53                                     ` Sean
2006-10-18 21:39                                     ` Petr Baudis
     [not found]                                       ` <20061018175443.50b728f6.seanlkml@sympatico.ca>
2006-10-18 21:54                                         ` Sean
2006-10-19  6:46                               ` Alexander Belchenko
     [not found]                                 ` <20061019064049.bec89582.seanlkml@sympatico.ca>
2006-10-19 10:40                                   ` Sean
2006-10-20 14:03                                     ` Aaron Bentley
2006-10-20 14:56                                       ` Jakub Narebski
2006-10-20 15:34                                         ` Aaron Bentley
2006-10-20 16:21                                           ` Jakub Narebski
2006-10-20 17:03                                             ` Aaron Bentley
2006-10-20 17:18                                               ` Linus Torvalds
2006-10-20 17:45                                                 ` Jakub Narebski
2006-10-20 17:59                                                   ` Linus Torvalds
2006-10-20 20:17                                                     ` Junio C Hamano
2006-10-20 20:40                                                       ` Jakub Narebski
2006-10-20 22:41                                                       ` [PATCH 1/2] git-pickaxe: introduce heuristics to "best match" scoring Junio C Hamano
2006-10-20 22:41                                                       ` [PATCH 2/2] git-pickaxe: introduce heuristics to avoid "trivial" chunks Junio C Hamano
2006-10-20 17:47                                                 ` [ANNOUNCE] Example Cogito Addon - cogito-bundle Aaron Bentley
2006-10-20 18:06                                                   ` Linus Torvalds
2006-10-20 18:30                                                     ` Linus Torvalds
2006-10-20 19:04                                                       ` Aaron Bentley
2006-10-20 19:31                                                         ` Linus Torvalds
2006-10-20 20:12                                                           ` Aaron Bentley
2006-10-20 17:21                                               ` Shawn Pearce
2006-10-20 17:48                                                 ` Linus Torvalds
2006-10-20 17:58                                                   ` David Lang
2006-10-20 18:15                                                   ` Jon Smirl
2006-11-03  3:43                                                     ` Matthew Hannigan
2006-10-20 20:23                                                   ` Petr Baudis
2006-10-20 20:49                                                     ` David Lang
2006-10-20 20:53                                                       ` Petr Baudis
2006-10-20 20:55                                                         ` David Lang
2006-10-20 20:53                                                   ` Shawn Pearce
2006-10-20 18:12                                             ` Jan Hudec
2006-10-20 18:35                                               ` Jakub Narebski
2006-10-20 18:46                                                 ` Jakub Narebski
2006-10-20 18:47                                               ` Jakub Narebski
2006-10-20 19:00                                                 ` Linus Torvalds
2006-10-20 19:10                                                   ` Aaron Bentley
2006-10-20 19:46                                                     ` Linus Torvalds
2006-10-20 20:29                                                       ` Aaron Bentley
2006-10-20 20:57                                                         ` Linus Torvalds
2006-10-21  2:03                                                           ` git-merge-recursive, was " Johannes Schindelin
2006-10-21  2:17                                                             ` Junio C Hamano
2006-10-22 21:04                                                               ` [PATCH] threeway_merge: if file will not be touched, leave it alone Johannes Schindelin
2006-10-22 23:11                                                                 ` Junio C Hamano
2006-10-23  0:48                                                                   ` Johannes Schindelin
2006-10-23  4:17                                                                     ` Junio C Hamano
2006-10-20 18:48                                               ` [ANNOUNCE] Example Cogito Addon - cogito-bundle Linus Torvalds
2006-10-20 22:13                                                 ` Jeff Licquia
2006-10-20 23:05                                                   ` Robert Collins
2006-10-20 23:15                                                     ` Robert Collins
2006-10-20 23:39                                                       ` Jeff Licquia
2006-10-20 23:24                                                     ` Jakub Narebski
2006-10-20 23:28                                                       ` Petr Baudis
2006-10-20 23:59                                                   ` Linus Torvalds
2006-10-21  1:26                                                     ` Junio C Hamano
2006-10-21  8:40                                                       ` Jakub Narebski
2006-10-20 19:14                                               ` Jakub Narebski
2006-10-20 22:59                                               ` Jeff King
2006-10-21 17:40                                                 ` Jan Hudec
2006-10-21 17:51                                                   ` Jakub Narebski
2006-10-21 19:20                                                     ` Jan Hudec
2006-10-21 18:42                                                   ` Linus Torvalds
2006-10-21 19:21                                                     ` Jakub Narebski
2006-11-03  6:36                                                       ` Martin Langhoff
2006-10-20 22:40                                           ` Petr Baudis
2006-10-20 23:33                                             ` Aaron Bentley
2006-10-21  7:56                                         ` Matthieu Moy
2006-10-21  8:36                                           ` Jakub Narebski
2006-10-21 10:09                                             ` Matthieu Moy
2006-10-21 10:34                                               ` Jakub Narebski
     [not found]                                       ` <20061020113712.d192580a.seanlkml@sympatico.ca>
2006-10-20 15:37                                         ` Sean
2006-10-20 15:37                                         ` Sean
2006-10-19 10:40                                   ` Sean
2006-10-18 21:20                             ` VCS comparison table Jeff King
2006-10-17 23:33                       ` Aaron Bentley
2006-10-18  8:13                         ` Andreas Ericsson
2006-10-18  6:22                   ` Matthieu Moy
     [not found]                 ` <20061017180051.5453ba90.seanlkml@sympatico.ca>
2006-10-17 22:00                   ` Sean
2006-10-17 22:00                   ` Sean
2006-10-17 22:44                     ` Aaron Bentley
     [not found]                       ` <20061017185622.30fbc6c0.seanlkml@sympatico.ca>
2006-10-17 22:56                         ` Sean
2006-10-17 23:11                           ` Jakub Narebski
2006-10-18 21:04                           ` Charles Duffy
     [not found]                             ` <20061018172945.c0c58c38.seanlkml@sympatico.ca>
2006-10-18 21:29                               ` Sean
2006-10-18 21:29                               ` Sean
2006-10-18 23:31                                 ` Charles Duffy
2006-10-18 23:48                                   ` Johannes Schindelin
2006-10-19  1:58                                     ` Charles Duffy
2006-10-19 11:01                                       ` Johannes Schindelin
2006-10-19 11:10                                         ` Charles Duffy
2006-10-19 11:24                                           ` Johannes Schindelin
2006-10-19 11:30                                             ` Charles Duffy
2006-10-20 11:38                                               ` Jakub Narebski
2006-10-18 23:48                                   ` Jakub Narebski
     [not found]                                   ` <20061018194945.3e5105e7.seanlkml@sympatico.ca>
2006-10-18 23:49                                     ` Sean
2006-10-18 23:49                                     ` Sean
2006-10-18 21:37                               ` Shawn Pearce
     [not found]                                 ` <20061018174450.f2108a21.seanlkml@sympatico.ca>
2006-10-18 21:44                                   ` Sean
2006-10-18 21:52                                   ` Petr Baudis
2006-10-18 23:38                                 ` Johannes Schindelin
2006-10-18 23:54                                   ` Petr Baudis
2006-10-19  0:33                                     ` Johannes Schindelin
2006-10-17 22:56                         ` Sean
2006-10-18 21:51                         ` Petr Baudis
2006-10-20  9:43                     ` Matthieu Moy
2006-10-24  6:02                       ` Lachlan Patrick
2006-10-24  6:23                         ` Shawn Pearce
2006-10-24  6:31                         ` Linus Torvalds
2006-10-24  6:45                           ` David Rientjes
     [not found]                             ` <Pin e.LNX.4.64.0610240812410.3962@g5.osdl.org>
     [not found]                             ` <"Pin e.LNX.4.64.0610240812410.3962"@g5.osdl.org>
2006-10-24 15:15                             ` Linus Torvalds
2006-10-24 20:12                               ` David Rientjes
2006-10-24 20:28                                 ` Jakub Narebski
2006-10-25  8:48                                 ` Jeff King
     [not found]                                   ` < Pine.LNX.4.64N.0610250157470.3467@attu1.cs.washington.edu>
     [not found]                                     ` <20061025094900.G A26989@coredump.intra.peff.net>
2006-10-25  9:19                                   ` David Rientjes
2006-10-25  9:32                                     ` Jakub Narebski
2006-10-25  9:49                                     ` Jeff King
2006-10-25 13:49                                       ` Andreas Ericsson
2006-10-25 21:51                                         ` David Lang
2006-10-25 22:15                                           ` Shawn Pearce
2006-10-25 22:29                                             ` Jakub Narebski
2006-10-25 22:44                                               ` Petr Baudis
2006-10-25 23:15                                                 ` Jakub Narebski
2006-10-26  1:06                                                 ` Horst H. von Brand
2006-10-25 22:41                                             ` David Lang
2006-10-25 17:21                                       ` David Rientjes
2006-10-25 21:03                                         ` Jeff King
2006-10-26 11:15                                         ` Andreas Ericsson
2006-10-26 16:30                                           ` David Lang
2006-10-26 17:03                                             ` Nicolas Pitre
2006-10-26 17:04                                               ` David Lang
2006-10-26 17:16                                                 ` Linus Torvalds
2006-10-26 17:24                                                 ` Nicolas Pitre
2006-10-26 17:45                                               ` Jakub Narebski
2006-10-25 21:08                                   ` Junio C Hamano
2006-10-25 21:16                                     ` Jeff King
2006-10-25 21:32                                       ` Junio C Hamano
2006-10-25 21:50                                     ` Junio C Hamano
2006-10-26 11:25                                     ` Andreas Ericsson
2006-10-26  2:29                             ` Linus Torvalds
2006-10-17 22:03                 ` Linus Torvalds
2006-10-17 22:53                   ` Aaron Bentley
2006-10-17 23:09                     ` Linus Torvalds
2006-10-18  0:23                       ` Aaron Bentley
2006-10-18  0:46                         ` Jakub Narebski
     [not found]                         ` <200610180246.18758.jnareb@gmail.com>
2006-10-18  1:00                           ` Aaron Bentley
2006-10-18  1:25                             ` Carl Worth
2006-10-18  3:10                               ` Aaron Bentley
2006-10-18  8:39                                 ` Andreas Ericsson
2006-10-18  9:04                                   ` Peter Baumann
2006-10-18  9:07                                   ` Jakub Narebski
2006-10-18 10:32                                   ` Matthew D. Fuller
2006-10-18 11:19                                     ` Andreas Ericsson
2006-10-18 12:43                                       ` Matthew D. Fuller
     [not found]                                         ` <20061018090218.35f0326b.seanlkml@sympatico.ca>
2006-10-18 13:02                                           ` Sean
2006-10-18 13:02                                           ` Sean
2006-10-18 13:10                                         ` Jakub Narebski
2006-10-18 16:07                                         ` Linus Torvalds
2006-10-18 15:38                                 ` Carl Worth
2006-10-19  9:10                                   ` Matthew D. Fuller
2006-10-19 11:15                                     ` Andreas Ericsson
2006-10-19 12:04                                       ` Matthieu Moy
2006-10-19 12:33                                         ` Petr Baudis
2006-10-19 13:44                                           ` Matthieu Moy
2006-10-19 16:03                                             ` Carl Worth
2006-10-19 16:38                                               ` Matthieu Moy
2006-10-20 11:24                                                 ` Jakub Narebski
2006-10-20 11:50                                           ` Jakub Narebski
2006-10-20 13:26                                             ` Jakub Narebski
2006-10-20 23:19                                             ` Junio C Hamano
2006-10-21  0:07                                               ` Linus Torvalds
2006-10-21  1:09                                                 ` Junio C Hamano
2006-10-21  1:19                                                   ` Linus Torvalds
2006-10-21  1:27                                                     ` Junio C Hamano
2006-10-21  1:55                                                       ` Linus Torvalds
2006-10-21  8:32                                                         ` Jakub Narebski
2006-10-19 11:27                                     ` Karl Hasselström
2006-10-19 11:46                                       ` Petr Baudis
2006-10-19 16:01                                         ` Matthew D. Fuller
2006-10-19 17:06                                           ` Matthew D. Fuller
2006-10-18  3:35                             ` Linus Torvalds
2006-10-19  3:10                               ` Aaron Bentley
2006-10-19  5:21                                 ` Carl Worth
2006-10-19  5:56                                   ` Martin Pool
2006-10-19 14:58                                   ` Aaron Bentley
2006-10-19 16:59                                     ` Carl Worth
2006-10-19 23:01                                       ` Aaron Bentley
2006-10-19 23:42                                         ` Carl Worth
2006-10-20  1:06                                           ` Aaron Bentley
2006-10-20  5:05                                             ` Linus Torvalds
2006-10-20  7:47                                               ` Lachlan Patrick
2006-10-20  8:38                                                 ` Johannes Schindelin
2006-10-20 10:13                                                   ` Petr Baudis
2006-10-20 11:09                                                   ` Jakub Narebski
2006-10-20 11:37                                                     ` Johannes Schindelin
2006-10-20 12:03                                                       ` Jakub Narebski
2006-10-20 12:48                                                         ` Johannes Schindelin
2006-10-20 17:23                                                       ` David Lang
2006-10-20 10:16                                                 ` Petr Baudis
2006-10-20  9:57                                             ` Jakub Narebski
2006-10-20 10:02                                               ` Matthieu Moy
2006-10-20 10:45                                                 ` Andy Whitcroft
2006-10-20 10:45                                               ` James Henstridge
2006-10-20 12:01                                                 ` Jakub Narebski
2006-10-20 11:00                                             ` Jakub Narebski
2006-10-20 14:12                                             ` Jeff King
2006-10-20 14:40                                               ` Jakub Narebski
2006-10-20 14:52                                                 ` Johannes Schindelin
2006-10-20 15:34                                                   ` Jakub Narebski
2006-10-21 17:57                                               ` Aaron Bentley
2006-10-21 18:20                                                 ` Jakub Narebski
2006-10-22 14:27                                                   ` Matthieu Moy
2006-10-20 21:48                                             ` Carl Worth
2006-10-21 13:01                                               ` Matthew D. Fuller
2006-10-21 14:08                                                 ` Jakub Narebski
2006-10-21 16:31                                                   ` Erik Bågfors
2006-10-21 16:59                                                     ` Jakub Narebski
2006-10-21 17:41                                                       ` Jakub Narebski
2006-10-21 18:11                                                   ` Matthew D. Fuller
2006-10-21 19:19                                                     ` Jeff King
2006-10-21 19:30                                                       ` Jakub Narebski
2006-10-21 19:47                                                         ` Jan Hudec
2006-10-21 19:55                                                         ` Linus Torvalds
2006-10-21 20:19                                                           ` Jakub Narebski
2006-10-21 21:46                                                       ` Matthew D. Fuller
     [not found]                                                         ` <20061021180653.d3152616.seanlkml@sympatico.ca>
2006-10-21 22:06                                                           ` Sean
2006-10-21 22:25                                                         ` Jakub Narebski
2006-10-21 23:42                                                           ` Jeff Licquia
2006-10-21 23:49                                                             ` Carl Worth
2006-10-22  0:07                                                               ` Jeff Licquia
2006-10-22  0:47                                                                 ` Linus Torvalds
2006-10-22 16:02                                                               ` Petr Baudis
2006-10-25  9:52                                                               ` Andreas Ericsson
2006-10-21 19:41                                                     ` Jakub Narebski
2006-10-22 19:18                                                       ` David Clymer
2006-10-22 19:57                                                         ` Jakub Narebski
2006-10-22 20:06                                                         ` Jakub Narebski
2006-10-23 11:56                                                           ` David Clymer
2006-10-23 12:54                                                             ` Jakub Narebski
2006-10-23 15:01                                                               ` James Henstridge
2006-10-23 17:18                                                                 ` Aaron Bentley
2006-10-23 17:53                                                                   ` Jakub Narebski
2006-10-23 18:04                                                                     ` Linus Torvalds
2006-10-23 18:21                                                                       ` Jakub Narebski
2006-10-23 18:26                                                                         ` Jelmer Vernooij
2006-10-23 18:31                                                                           ` Jakub Narebski
2006-10-23 18:44                                                                             ` Jelmer Vernooij
2006-10-23 18:45                                                                             ` Linus Torvalds
2006-10-23 18:56                                                                               ` Jelmer Vernooij
2006-10-23 19:02                                                                                 ` Shawn Pearce
2006-10-23 19:12                                                                                 ` Jakub Narebski
2006-10-23 19:18                                                                                 ` Linus Torvalds
2006-10-23 18:34                                                                         ` Linus Torvalds
2006-10-23 20:06                                                                   ` Jeff King
2006-10-23 20:29                                                                     ` Jakub Narebski
2006-10-24  3:24                                                               ` David Clymer
2006-10-21 20:47                                                 ` Carl Worth
2006-10-21 20:55                                                   ` Jakub Narebski
2006-10-21 23:07                                                   ` Jeff Licquia
     [not found]                                                     ` <20061021192539.4a00cc3e.seanlkml@sympatico.ca>
2006-10-21 23:25                                                       ` Sean
2006-10-21 23:25                                                       ` Sean
2006-10-22  0:46                                                       ` Jeff Licquia
     [not found]                                                         ` <20061021212645.2f9ba751.seanlkml@sympatico.ca>
2006-10-22  1:26                                                           ` Sean
2006-10-22  1:26                                                           ` Sean
2006-10-22  3:23                                                           ` Jeff Licquia
     [not found]                                                             ` <20061021233014.d4525a1d.seanlkml@sympatico.ca>
2006-10-22  3:30                                                               ` Sean
2006-10-22  3:30                                                               ` Sean
2006-10-22 10:00                                                               ` Matthew D. Fuller
     [not found]                                                                 ` <20061022074422.50dcbee6.seanlkml@sympatico.ca>
2006-10-22 11:44                                                                   ` Sean
2006-10-22 11:44                                                                   ` Sean
2006-10-22 13:03                                                                   ` Matthew D. Fuller
     [not found]                                                                     ` <20061022092845.233deb43.seanlkml@sympatico.ca>
2006-10-22 13:28                                                                       ` Sean
2006-10-22 13:28                                                                       ` Sean
2006-10-22 13:33                                                                       ` Matthew D. Fuller
     [not found]                                                                         ` <20061022094041.77c06cc7.seanlkml@sympatico.ca>
2006-10-22 13:40                                                                           ` Sean
2006-10-22 13:40                                                                           ` Sean
2006-10-22 13:57                                                                           ` Matthew D. Fuller
     [not found]                                                                             ` <20061022102454.b9dea693.seanlkml@sympatico.ca>
2006-10-22 14:24                                                                               ` Sean
2006-10-22 14:24                                                                               ` Sean
2006-10-22 14:56                                                                               ` Matthew D. Fuller
2006-10-22 15:05                                                                                 ` Matthieu Moy
2006-10-22 12:46                                                   ` Matthew D. Fuller
2006-10-22 13:51                                                     ` Jakub Narebski
2006-10-22 19:36                                                   ` David Clymer
2006-10-25  9:35                                                 ` Andreas Ericsson
2006-10-25  9:46                                                   ` Jakub Narebski
2006-10-25 10:08                                                     ` James Henstridge
2006-10-25 15:54                                                       ` Carl Worth
2006-10-26  8:52                                                         ` James Henstridge
2006-10-26  9:33                                                           ` Junio C Hamano
2006-10-26  9:57                                                             ` James Henstridge
2006-10-26 10:10                                                               ` Jeff King
2006-10-26 10:52                                                                 ` Vincent Ladeuil
2006-10-26 11:13                                                                   ` Jeff King
2006-10-26 11:15                                                                     ` Jeff King
2006-10-26 12:33                                                                     ` Vincent Ladeuil
2006-10-26 13:14                                                                       ` Rogan Dawes
2006-10-26 11:18                                                                   ` Jakub Narebski
2006-10-26 15:05                                                                   ` Linus Torvalds
2006-10-26 16:04                                                                     ` Vincent Ladeuil
2006-10-26 16:21                                                                       ` Linus Torvalds
2006-10-26  9:50                                                           ` Andreas Ericsson
2006-10-25  9:57                                                   ` Matthieu Moy
2006-10-21 20:05                                               ` Aaron Bentley
2006-10-21 20:48                                                 ` Jakub Narebski
2006-10-21 22:52                                                   ` Edgar Toernig
2006-10-21 23:39                                                   ` Aaron Bentley
2006-10-22  0:04                                                     ` Carl Worth
2006-10-22  0:14                                                     ` Jakub Narebski
     [not found]                                                 ` <20061021165313.dba67497.seanlkml@sympatico.ca>
2006-10-21 20:53                                                   ` Sean
2006-10-21 20:53                                                   ` Sean
2006-10-21 21:10                                                     ` Linus Torvalds
2006-10-22  7:45                                                 ` Jan Hudec
2006-10-22  9:05                                                   ` Jakub Narebski
2006-10-22  9:56                                                     ` Erik Bågfors
2006-10-22 13:23                                                       ` Jakub Narebski
2006-10-22 14:11                                                         ` Erik Bågfors
2006-10-22 14:39                                                           ` Jakub Narebski
2006-10-22 14:25                                                       ` Carl Worth
2006-10-22 14:48                                                         ` Erik Bågfors
2006-10-22 15:04                                                           ` Jakub Narebski
2006-10-22 14:55                                                         ` Jakub Narebski
2006-10-22 18:53                                                         ` Matthew D. Fuller
2006-10-22 19:27                                                           ` Jakub Narebski
2006-10-23 16:57                                                           ` David Lang
2006-10-23 17:29                                                           ` Linus Torvalds
2006-10-23 22:21                                                             ` Matthew D. Fuller
2006-10-23 22:28                                                               ` David Lang
2006-10-23 22:44                                                               ` Linus Torvalds
2006-10-24  0:26                                                                 ` Matthew D. Fuller
2006-10-24 15:58                                                                   ` David Lang
2006-10-24 16:34                                                                     ` Matthew D. Fuller
2006-10-24 18:03                                                                       ` David Lang
2006-10-24 18:25                                                                         ` Jakub Narebski
2006-10-24 19:27                                                                           ` Petr Baudis
2006-10-25  0:27                                                                         ` Matthew D. Fuller
2006-10-25 22:40                                                                           ` David Lang
2006-10-25 23:53                                                                             ` Matthew D. Fuller
2006-10-26 10:13                                                                               ` Andreas Ericsson
2006-10-26 10:45                                                                                 ` Erik Bågfors
2006-10-26 11:48                                                                                 ` Jakub Narebski
2006-10-26 11:54                                                                                   ` Nicholas Allen
2006-10-26 12:13                                                                                     ` Jakub Narebski
2006-10-26 21:25                                                                                     ` Jeff King
2006-10-27  2:02                                                                                   ` Horst H. von Brand
2006-10-27  2:08                                                                                     ` Petr Baudis
2006-10-27  9:34                                                                                     ` Andreas Ericsson
2006-10-27 10:49                                                                                       ` Jakub Narebski
2006-10-27 11:41                                                                                         ` Andreas Ericsson
2006-10-27 14:46                                                                                       ` J. Bruce Fields
2006-10-28 11:18                                                                                         ` Ilpo Nyyssönen
2006-10-28 13:53                                                                                           ` Jakub Narebski
2006-10-28 14:58                                                                                             ` Jakub Narebski
2006-10-28 22:18                                                                                             ` Robin Rosenberg
2006-10-28 22:46                                                                                               ` Jakub Narebski
2006-10-29  6:54                                                                                             ` Ilpo Nyyssönen
2006-10-29 12:01                                                                                               ` Jakub Narebski
2006-10-29 18:24                                                                                                 ` Matthew D. Fuller
2006-10-29 18:39                                                                                                   ` Jakub Narebski
2006-10-30  0:10                                                                                                 ` Theodore Tso
2006-10-30 10:18                                                                                             ` Progress reporting (was: VCS comparison table) Jakub Narebski
2006-10-30 15:21                                                                                               ` Nicolas Pitre
2006-10-26 12:12                                                                                 ` VCS comparison table Matthew D. Fuller
2006-10-26 12:18                                                                                   ` Jakub Narebski
2006-10-26 15:06                                                                                     ` Matthew D. Fuller
2006-10-26 13:47                                                                                 ` Aaron Bentley
2006-10-26 13:53                                                                                   ` Jakub Narebski
2006-10-26 15:13                                                                                     ` Aaron Bentley
2006-10-30 21:46                                                                             ` Jan Hudec
2006-10-23 22:45                                                               ` Jakub Narebski
2006-10-23 23:14                                                                 ` Erik Bågfors
2006-10-23 23:24                                                                   ` Linus Torvalds
2006-10-24  0:26                                                                     ` Matthew D. Fuller
2006-10-24  0:38                                                                       ` Matthew D. Fuller
2006-10-24  5:42                                                                         ` Linus Torvalds
2006-10-24  5:47                                                                           ` Shawn Pearce
2006-10-24 16:46                                                                           ` Matthew D. Fuller
2006-10-24  0:47                                                                       ` Carl Worth
2006-10-24  7:31                                                                         ` Erik Bågfors
2006-10-24 21:51                                                                         ` Erik Bågfors
2006-10-25 12:41                                                                           ` Andreas Ericsson
2006-10-25 13:15                                                                             ` Erik Bågfors
2006-10-24  0:39                                                                     ` Martin Langhoff
2006-10-24  7:52                                                                       ` Erik Bågfors
2006-10-24  8:37                                                                         ` Jakub Narebski
2006-10-24 10:11                                                                         ` Martin Langhoff
2006-10-24  9:30                                                                     ` Jelmer Vernooij
2006-10-26 15:22                                                                       ` Aaron Bentley
2006-10-25 18:41                                                                     ` Aaron Bentley
2006-10-24  9:51                                                               ` Matthieu Moy
2006-10-24 10:27                                                                 ` Jakub Narebski
2006-10-25 10:52                                                               ` Andreas Ericsson
2006-10-25 19:53                                                                 ` Junio C Hamano
2006-10-20  2:53                                           ` James Henstridge
2006-10-20  9:51                                             ` Jakub Narebski
2006-10-20 10:42                                               ` James Henstridge
2006-10-20 13:17                                                 ` Jakub Narebski
2006-10-20 13:36                                                   ` Petr Baudis
2006-10-20 14:12                                                     ` Jakub Narebski
2006-10-20 14:59                                                   ` James Henstridge
2006-10-20 22:50                                                     ` Jakub Narebski
2006-10-20 22:58                                                       ` Petr Baudis
2006-10-20 10:53                                         ` Jakub Narebski
2006-10-20 12:34                                           ` Matthieu Moy
2006-10-20 13:20                                             ` Jakub Narebski
2006-10-20 13:47                                               ` Petr Baudis
2006-10-19 17:01                                     ` Carl Worth
2006-10-19 17:14                                       ` J. Bruce Fields
2006-10-20 14:31                                         ` Jeff King
2006-10-20 15:33                                           ` J. Bruce Fields
2006-10-20 15:43                                             ` Jeff King
2006-10-19 15:25                                   ` Linus Torvalds
2006-10-19 16:13                                     ` Matthew D. Fuller
2006-10-19 16:49                                       ` Linus Torvalds
2006-10-19 18:30                                         ` Linus Torvalds
2006-10-19 18:54                                           ` Matthieu Moy
2006-10-19 20:47                                             ` Linus Torvalds
2006-10-21  5:49                                               ` Junio C Hamano
2006-10-19 23:28                                             ` Ryan Anderson
2006-10-19 19:16                                           ` Junio C Hamano
2006-10-20 10:51                                             ` Jakub Narebski
2006-10-20 15:58                                               ` Linus Torvalds
2006-10-19  5:33                                 ` Jan Hudec
2006-10-19  7:02                                 ` Erik Bågfors
2006-10-19  8:49                                   ` Christian MICHON
2006-10-19  8:58                                     ` Andreas Ericsson
2006-10-19  9:10                                       ` Matthieu Moy
2006-10-19 14:57                                         ` Tim Webster
2006-10-19 15:30                                           ` Aaron Bentley
2006-10-20  3:14                                             ` Tim Webster
2006-10-20  4:05                                               ` Aaron Bentley
2006-10-21 12:30                                                 ` Jan Hudec
2006-10-21 13:05                                                   ` Jakub Narebski
2006-10-21 13:15                                                     ` Jan Hudec
2006-10-21 13:29                                                       ` Jakub Narebski
2006-10-21 16:56                                                     ` Aaron Bentley
2006-10-21 17:03                                                       ` Jakub Narebski
2006-10-21 17:31                                                       ` Linus Torvalds
2006-10-21 17:38                                                         ` Linus Torvalds
2006-10-22  7:49                                                         ` Tim Webster
2006-10-22 17:12                                                           ` Linus Torvalds
2006-10-23  5:19                                                             ` Matthew Hannigan
2006-10-20 10:44                                             ` Jakub Narebski
2006-10-19 16:14                                           ` Matthieu Moy
2006-10-20  3:40                                             ` Tim Webster
2006-10-19 15:45                                       ` Ramon Diaz-Uriarte
2006-10-20 10:40                                       ` Jakub Narebski
2006-10-20 13:36                                         ` Shawn Pearce
2006-10-21 12:30                                         ` Matthew D. Fuller
2006-10-19 11:37                                   ` Petr Baudis
2006-10-19 15:17                                     ` Matthew D. Fuller
2006-10-20 13:22                                 ` Horst H. von Brand
2006-10-20 13:46                                   ` Christian MICHON
2006-10-20 15:05                                     ` Jakub Narebski
2006-10-20 15:16                                       ` Johannes Schindelin
2006-10-20 15:28                                         ` Jakub Narebski
2006-10-20 15:39                                           ` Johannes Schindelin
2006-10-20 16:05                                             ` Jakub Narebski
2006-10-20 16:24                                               ` Jakub Narebski
2006-10-18  3:25                         ` Ryan Anderson
2006-10-17 23:24                     ` Jakub Narebski
2006-10-17 23:50                       ` Linus Torvalds
2006-10-17 23:35               ` Jakub Narebski
2006-10-17  9:20         ` Jakub Narebski
2006-10-17  9:40           ` Robert Collins
2006-10-17 10:08             ` Andreas Ericsson
2006-10-17 10:47               ` Matthieu Moy
2006-10-18  4:55               ` Robert Collins
2006-10-18  8:53                 ` Andreas Ericsson
2006-10-18 11:15                   ` Petr Baudis
2006-10-18 15:31                 ` Linus Torvalds
2006-10-18 15:50                   ` Jakub Narebski
2006-10-18 16:22                     ` Linus Torvalds
2006-10-17 16:41             ` Linus Torvalds
2006-10-17 22:27               ` Robert Collins
     [not found]                 ` <20061017191838.1c36499b.seanlkml@sympatico.ca>
2006-10-17 23:18                   ` Sean
2006-10-17 23:18                   ` Sean
2006-10-17 23:33                   ` Petr Baudis
2006-10-18  5:26                     ` Robert Collins
2006-10-18 21:46                       ` Alternate revno proposal (Was: Re: VCS comparison table) Jan Hudec
2006-10-18 22:14                         ` Jakub Narebski
2006-10-19  5:45                           ` Jan Hudec
2006-10-19  8:19                         ` Alexander Belchenko
2006-10-21 13:48                           ` Jan Hudec
2006-10-20  2:09                         ` Horst H. von Brand
2006-10-20  5:38                           ` Jan Hudec
2006-10-17  9:59           ` VCS comparison table Andreas Ericsson
2006-10-17  9:37       ` Robert Collins
     [not found]         ` <20061017060112.2d036f96.seanlkml@sympatico.ca>
2006-10-17 10:01           ` Sean
2006-10-17 10:01           ` Sean
2006-10-17 10:06         ` Jakub Narebski
2006-10-16 23:35     ` Linus Torvalds
2006-10-16 23:55       ` Jakub Narebski
2006-10-17  0:04         ` Johannes Schindelin
2006-10-17  0:23           ` Linus Torvalds
2006-10-17  0:36             ` Johannes Schindelin
2006-10-17  1:17             ` Nguyen Thai Ngoc Duy
2006-10-17  7:26             ` Christian MICHON
2006-10-17  0:08         ` Linus Torvalds
2006-10-17  0:24           ` Jakub Narebski
2006-10-17  4:31           ` Aaron Bentley
2006-10-19 19:01             ` Nathaniel Smith
2006-10-20 10:32               ` Jakub Narebski
2006-10-17  0:29       ` Luben Tuikov
2006-10-17  4:24       ` Aaron Bentley
2006-10-17  7:50         ` Andreas Ericsson
2006-10-17 14:05           ` Aaron Bentley
     [not found]             ` <20061017103423.a9589295.seanlkml@sympatico.ca>
2006-10-17 14:34               ` Sean
2006-10-17 15:05             ` Andreas Ericsson
2006-10-17 15:32               ` Matthieu Moy
2006-10-17 19:44               ` Aaron Bentley
2006-10-17 23:28                 ` Petr Baudis
2006-10-17 23:39                 ` Jakub Narebski
2006-10-18  0:24                   ` Aaron Bentley
2006-10-17  8:30         ` Jakub Narebski
2006-10-17 11:19           ` Matthieu Moy
     [not found]             ` <20061017073839.3728d1e7.seanlkml@sympatico.ca>
2006-10-17 11:38               ` Sean
2006-10-17 12:03                 ` Matthieu Moy
2006-10-17 12:56                   ` Jakub Narebski
     [not found]                   ` <20061017085723.7542ee6c.seanlkml@sympatico.ca>
2006-10-17 12:57                     ` Sean
2006-10-17 13:44                       ` Matthieu Moy
     [not found]                         ` <20061017100150.b4919aac.seanlkml@sympatico.ca>
2006-10-17 14:01                           ` Sean
2006-10-17 14:01                           ` Sean
2006-10-17 14:19                             ` Matthieu Moy
     [not found]                               ` <20061017110655.f7bcf3f1.seanlkml@sympatico.ca>
2006-10-17 15:06                                 ` Sean
2006-10-17 15:06                                 ` Sean
2006-10-18  0:14                                 ` Petr Baudis
2006-10-18  1:36                                   ` Integrating gitweb and git-browser (was: Re: VCS comparison table) Jakub Narebski
2006-10-18  1:52                                     ` Petr Baudis
2006-10-18  1:58                                       ` Jakub Narebski
2006-10-18  2:02                                         ` Petr Baudis
2006-10-17 12:57                     ` VCS comparison table Sean
2006-10-18  0:25                   ` Petr Baudis
2006-10-18  0:38                     ` Aaron Bentley
     [not found]                     ` <4535778D.40006@utoronto.ca>
2006-10-18  0:42                       ` Petr Baudis
2006-10-18  0:48                       ` Jakub Narebski
     [not found]                       ` <20061018004209.GL20017@pasky.or.cz>
2006-10-18  0:50                         ` Aaron Bentley
     [not found]                         ` <45357A6E.3050603@utoronto.ca>
2006-10-18  0:57                           ` Petr Baudis
2006-10-18  1:05                             ` Aaron Bentley
2006-10-18  1:11                   ` Petr Baudis
2006-10-18  6:44                     ` Matthieu Moy
2006-10-18  7:16                       ` Shawn Pearce
2006-10-17 11:38               ` Sean
2006-10-21 14:13               ` Jan Hudec
     [not found]                 ` <20061021102346.9cd3abce.seanlkml@sympatico.ca>
2006-10-21 14:23                   ` Sean
2006-10-21 14:23                   ` Sean
2006-10-21 16:19                     ` Erik Bågfors
2006-10-21 16:31                       ` Jakub Narebski
     [not found]                       ` <BAYC1-PASMTP01706CD2FCBE923333A0CBAE020@CEZ.ICE>
2006-10-21 16:35                         ` Erik Bågfors
     [not found]                           ` <BAYC1-PASMTP04FAD1FBB91BA4C07A5E79AE020@CEZ.ICE>
2006-10-21 17:33                             ` Erik Bågfors
2006-10-21 21:04                       ` Linus Torvalds
2006-10-21 23:58                         ` Linus Torvalds
2006-10-22  0:13                           ` Erik Bågfors
2006-10-22  0:22                             ` Jakub Narebski
2006-10-22  1:00                               ` Theodore Tso
2006-10-22  0:09                         ` Erik Bågfors
2006-10-27  4:51                         ` Jan Hudec
2006-10-28 11:38                           ` Jakub Narebski
2006-10-21 18:34                   ` Jan Hudec
     [not found]                     ` <20061021144704.71d75e83.seanlkml@sympatico.ca>
2006-10-21 18:47                       ` Sean
2006-10-21 18:47                       ` Sean
2006-10-17 11:45             ` Jakub Narebski
2006-10-17 12:02               ` Jakub Narebski
     [not found]               ` <20061017080702.615a3b2f.seanlkml@sympatico.ca>
2006-10-17 12:07                 ` Sean
2006-10-21  8:27                   ` Jakub Narebski
2006-10-21  8:48                     ` Erik Bågfors
2006-10-17 12:07                 ` Sean
2006-10-17 13:33               ` Matthieu Moy
2006-10-17 12:00             ` Andreas Ericsson
2006-10-17 13:27               ` Matthieu Moy
2006-10-17 13:55                 ` Jakub Narebski
2006-10-17 14:08                   ` Matthieu Moy
2006-10-17 14:41                     ` Jakub Narebski
2006-10-18  0:00                       ` Petr Baudis
2006-10-18  0:30                         ` Aaron Bentley
2006-10-18  0:39                           ` Petr Baudis
2006-10-18  1:28                           ` Jakub Narebski
2006-10-18  1:44                             ` Carl Worth
2006-10-18  3:27                               ` Aaron Bentley
2006-10-18  9:20                                 ` Jakub Narebski
2006-10-18 16:31                                   ` Aaron Bentley
2006-10-21 15:56                                     ` Jan Hudec
2006-10-21 16:13                                       ` Jakub Narebski
     [not found]                           ` <20061018003920.GK20017@pasky.or.cz>
2006-10-18  9:28                             ` Erik Bågfors
2006-10-18 11:08                               ` Petr Baudis
2006-10-18 11:17                                 ` Jakub Narebski
2006-10-18 13:09                                 ` Erik Bågfors
2006-10-18 18:03                   ` Jeff Licquia
2006-10-17 14:01                 ` Andreas Ericsson
2006-10-17 14:24                   ` Matthieu Moy
2006-10-17 14:19             ` Olivier Galibert
2006-10-17 15:37               ` Matthieu Moy
2006-10-18  1:46             ` Petr Baudis
     [not found]         ` <20061017062313.cd41e031.seanlkml@sympatico.ca>
2006-10-17 10:23           ` Sean
2006-10-17 10:23           ` Sean
2006-10-17 10:30             ` Johannes Schindelin
     [not found]               ` <20061017063549.da130b5f.seanlkml@sympatico.ca>
2006-10-17 10:35                 ` Sean
2006-10-17 10:35                 ` Sean
2006-10-17 10:45               ` Matthias Kestenholz
2006-10-17 13:48               ` Aaron Bentley
2006-10-17 19:51             ` Aaron Bentley
2006-10-21 18:58               ` Jan Hudec
     [not found]                 ` <20061021150233.c29e11c5.seanlkml@sympatico.ca>
2006-10-21 19:02                   ` Sean
2006-10-21 19:02                   ` Sean
2006-10-20  8:26             ` James Henstridge
2006-10-20 10:19               ` Jakub Narebski
2006-10-20  8:56             ` Erik Bågfors
2006-10-17 15:03         ` Linus Torvalds
2006-10-16 23:45     ` Johannes Schindelin
2006-10-17  2:40       ` Petr Baudis
2006-10-17  5:08       ` Aaron Bentley
2006-10-17  5:25         ` Carl Worth
2006-10-17  5:31         ` Shawn Pearce
2006-10-17  6:23         ` Junio C Hamano
2006-10-17 18:52           ` J. Bruce Fields
2006-10-17 19:12             ` Jakub Narebski
     [not found]         ` <20061017062341.8a5c8530.seanlkml@sympatico.ca>
2006-10-17 10:23           ` Sean
2006-10-17 10:23           ` Sean
2006-10-18  6:33           ` Jeff King
2006-10-17  9:33       ` Robert Collins
2006-10-17  9:45         ` Jakub Narebski
2006-10-14 20:20 ` Jakub Narebski
2006-10-14 23:06   ` Jon Smirl
2006-10-14 23:34     ` Jakub Narebski
     [not found]     ` <20061014200356.e7b56402.seanlkml@sympatico.ca>
2006-10-15  0:03       ` Sean
2006-10-15  0:34         ` Jon Smirl
     [not found]           ` <20061014214452.8c2d2a5c.seanlkml@sympatico.ca>
2006-10-15  1:44             ` Sean
2006-10-15  0:53     ` Jakub Narebski
2006-10-15 15:37     ` Jakub Narebski
2006-10-15 18:23     ` Petr Baudis
     [not found]       ` <20061015143956.86db3a8b.seanlkml@sympatico.ca>
2006-10-15 18:39         ` Sean
2006-10-15 19:24         ` Petr Baudis
2006-10-15 19:49       ` Jon Smirl
2006-10-16  3:23         ` Petr Baudis
2006-10-16  3:30           ` Jon Smirl
2006-10-17  3:52             ` Sam Vilain
2006-10-17 12:59               ` Jon Smirl
2005-07-27 10:01 Git 1.0 Synopis (Draft v2) Ryan Anderson
2005-07-27 22:13 ` Junio C Hamano
2005-07-29  8:27   ` Ryan Anderson
2005-07-29  8:29 ` Git 1.0 Synopis (Draft v3 Ryan Anderson
2005-07-29 10:58   ` Johannes Schindelin
2005-07-29 21:26   ` Sam Ravnborg
2005-07-31 22:18     ` Horst von Brand
2005-07-31 22:15   ` Horst von Brand
2005-08-01 13:21     ` Horst von Brand
2005-08-15  4:55     ` Git 1.0 Synopis (Draft v4) Ryan Anderson
2005-08-15  5:09       ` Ryan Anderson
2005-08-15  5:19       ` Junio C Hamano
2005-08-15  6:58         ` Ryan Anderson
2005-08-15  7:17           ` Junio C Hamano
2005-08-15  8:02             ` Ryan Anderson
2005-08-15  8:17               ` Junio C Hamano
2005-08-15 18:59                 ` Daniel Barkalow
2005-08-16  7:28                   ` Junio C Hamano
2005-08-16 10:03                     ` Johannes Schindelin
2005-08-16 10:14                       ` Dongsheng Song
2005-08-16 10:17                       ` about git server & permissions Dongsheng Song
2005-08-16 15:31                     ` Git 1.0 Synopis (Draft v4) Johannes Schindelin
2005-08-16 15:47                       ` Daniel Barkalow
2005-08-16 15:39                     ` Daniel Barkalow
2005-08-16 19:41                     ` Horst von Brand
2005-08-16 20:41                       ` Johannes Schindelin
2005-08-18  9:27                       ` Matthias Urlichs

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7vejt5xjt9.fsf@assigned-by-dhcp.cox.net \
    --to=junkio@cox.net \
    --cc=git@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).