git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Junio C Hamano <gitster@pobox.com>
To: git@vger.kernel.org
Subject: Re: What's cooking in git.git (topics)
Date: Sun, 29 Jun 2008 01:55:13 -0700	[thread overview]
Message-ID: <7vod5kd3im.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: 7vej6l3lp7.fsf@gitster.siamese.dyndns.org

Here are the topics that have been cooking.  Commits prefixed
with '-' are only in 'pu' while commits prefixed with '+' are
in 'next'.

The topics list the commits in reverse chronological order.  The topics
meant to be applied to the maintenance series have "maint-" in their
names.

It already is beginning to become clear what 1.6.0 will look like.  What's
already in 'next' all are well intentioned (I do not guarantee they are
already bug-free --- that is what cooking them in 'next' is for) and are
good set of feature enhancements.  Bigger changes will be:

 * MinGW will be in.

 * /usr/bin/git-cat-file is no more.  The bulk of the git commands will
   move to /usr/libexec/git-core/ or somesuch.

 * git-merge will be rewritten in C.

 * default pack and idx versions will be updated as scheduled for some
   time ago.

----------------------------------------------------------------
[New Topics]

* jk/maint-fetch-ref-hier (Thu Jun 26 23:59:50 2008 -0400) 1 commit
 + fetch: report local storage errors in status table

When the remote used to have "foo" branch but now has "foo/bar", fetch
refuses to delete the existing remote tracking branch "foo" to create a
new remote tracking branch "foo/bar", but the error message was
confusing.

* jc/maint-reset (Wed Jun 25 18:16:36 2008 -0700) 1 commit
 + Allow "git-reset path" when unambiguous

We used to require "git-reset -- path" even when there is no ambiguity
(i.e. path cannot be mistaken as a valid tree-ish and it is a filename in
the work tree).

* js/maint-clone-insteadof (Fri Jun 27 13:56:05 2008 +0100) 1 commit
 . clone: respect url.insteadOf setting in global configs

"git clone" does not honor "url.InsteadOf" in $HOME/.gitconfig; Daniel
seems to have ideas for a better fix than this, but this is worth fixing
on 'maint'.

* tr/send-email-ssl (Thu Jun 26 23:03:21 2008 +0200) 2 commits
 + git-send-email: prevent undefined variable warnings if no
   encryption is set
 + git-send-email: add support for TLS via Net::SMTP::SSL

* kb/send-email-fifo (Wed Jun 25 15:44:40 2008 -0700) 1 commit
 + git-send-email: Accept fifos as well as files

Two minor send-email feature enhancements for 1.6.0.

* jc/checkdiff (Thu Jun 26 16:08:05 2008 -0700) 6 commits
 + Update sample pre-commit hook to use "diff --check"
 + diff --check: detect leftover conflict markers
 + Teach "diff --check" about new blank lines at end
 + checkdiff: pass diff_options to the callback
 + check_and_emit_line(): rename and refactor
 + diff --check: explain why we do not care whether old side is
   binary

Allows us to replace the sample pre-commit hook that was not aware of the
line termination convention per path nor newer whitespace breakage rules.

* np/pack-default (Wed Jun 25 00:25:53 2008 -0400) 2 commits
 + pack.indexversion config option now defaults to 2
 + repack.usedeltabaseoffset config option now defaults to "true"

Updates the default value for pack.indexversion to 2 and use delta-base
offset encoding of the packfiles by default.

* js/apply-recount (Fri Jun 27 18:43:09 2008 +0100) 1 commit
 + Allow git-apply to recount the lines in a hunk (AKA recountdiff)

A good ingredient for implementing "apply --edit".

* dz/apply-again (Fri Jun 27 14:39:12 2008 -0400) 1 commit
 + git-apply: handle a patch that touches the same path more than
   once better

Allows us to feed a patch that touches the same path more than once.

* ph/parseopt-step-blame (Tue Jun 24 11:12:12 2008 +0200) 7 commits
 - Migrate git-blame to parse-option partially.
 - parse-opt: add PARSE_OPT_KEEP_ARGV0 parser option.
 - parse-opt: fake short strings for callers to believe in.
 - parse-opt: do not pring errors on unknown options, return -2
   intead.
 - parse-opt: create parse_options_step.
 - parse-opt: Export a non NORETURN usage dumper.
 - parse-opt: have parse_options_{start,end}.

----------------------------------------------------------------
[Will merge to master soon]

* nd/dashless (Tue Jun 24 19:58:11 2008 -0700) 2 commits
 + Keep some git-* programs in $(bindir)
 + Move all dashed-form commands to libexecdir

Scheduled for 1.6.0.  We'll leave server-side programs in $(bindir) 
so that ssh clients can ask for "git-program" and find them on the $PATH.

* sg/merge-options (Sun Apr 6 03:23:47 2008 +0200) 1 commit
 + merge: remove deprecated summary and diffstat options and config
   variables

* jc/dashless (Thu Jun 26 16:43:34 2008 -0700) 4 commits
 + Revert "Make clients ask for "git program" over ssh and local
   transport"
 + Make clients ask for "git program" over ssh and local transport
 + Prepare execv_git_cmd() for removal of builtins from the
   filesystem
 + git-shell: accept "git foo" form

----------------------------------------------------------------
[Actively Cooking]

* jc/reflog-expire (Sat Jun 28 22:24:49 2008 -0700) 2 commits
 - Make default expiration period of reflog used for stash infinite
 - Per-ref reflog expiry configuration

As 1.6.0 will be a good time to make backward incompatible changes, the
tip commit makes the default expiry period of stash 'never', unless you
configure them to expire explicitly using gc.refs/stash.* variables.
Needs consensus, but I am guessing that enough people would want stash
that does not expire.

* jc/merge-theirs (Sat Jun 28 17:28:22 2008 -0700) 3 commits
 - Teach git-merge to pass -X<option> to the backend strategy module
 - git-merge-recursive-{ours,theirs}
 - git-merge-file --ours, --theirs

Punting a merge by discarding your own work in conflicting parts but still
salvaging the parts that are cleanly automerged.  It is likely that this
will result in nonsense mishmash, but somehow often people want this, so
here they are.  The interface to the backends is updated so that you can
say "git merge -Xours -s recursive other" now.

* j6t/mingw (Sat Nov 17 20:48:14 2007 +0100) 38 commits
 + compat/pread.c: Add a forward declaration to fix a warning
 + Windows: Fix ntohl() related warnings about printf formatting
 + Windows: TMP and TEMP environment variables specify a temporary
   directory.
 + Windows: Make 'git help -a' work.
 + Windows: Work around an oddity when a pipe with no reader is
   written to.
 + Windows: Make the pager work.
 + When installing, be prepared that template_dir may be relative.
 + Windows: Use a relative default template_dir and ETC_GITCONFIG
 + Windows: Compute the fallback for exec_path from the program
   invocation.
 + Turn builtin_exec_path into a function.
 + Windows: Use a customized struct stat that also has the st_blocks
   member.
 + Windows: Add a custom implementation for utime().
 + Windows: Add a new lstat and fstat implementation based on Win32
   API.
 + Windows: Implement a custom spawnve().
 + Windows: Implement wrappers for gethostbyname(), socket(), and
   connect().
 + Windows: Work around incompatible sort and find.
 + Windows: Implement asynchronous functions as threads.
 + Windows: Disambiguate DOS style paths from SSH URLs.
 + Windows: A rudimentary poll() emulation.
 + Windows: Implement start_command().
 + Windows: A pipe() replacement whose ends are not inherited to
   children.
 + Windows: Wrap execve so that shell scripts can be invoked.
 + Windows: Implement setitimer() and sigaction().
 + Windows: Fix PRIuMAX definition.
 + Windows: Implement gettimeofday().
 + Make my_mktime() public and rename it to tm_to_time_t()
 + Windows: Work around misbehaved rename().
 + Windows: always chmod(, 0666) before unlink().
 + Windows: A minimal implemention of getpwuid().
 + Windows: Implement a wrapper of the open() function.
 + Windows: Strip ".exe" from the program name.
 + Windows: Handle absolute paths in
   safe_create_leading_directories().
 + Windows: Treat Windows style path names.
 + setup.c: Prepare for Windows directory separators.
 + Windows: Use the Windows style PATH separator ';'.
 + Add target architecture MinGW.
 + Compile some programs only conditionally.
 + Add compat/regex.[ch] and compat/fnmatch.[ch].

No explanation necessary ;-)

* mv/merge-in-c (Sat Jun 28 04:38:19 2008 +0200) 13 commits
 - Build in merge
 - Add new test case to ensure git-merge prepends the custom merge
   message
 - Add new test case to ensure git-merge reduces octopus parents when
   possible
 - Introduce reduce_heads()
 - Introduce get_merge_bases_many()
 - Add new test to ensure git-merge handles more than 25 refs.
 - Introduce get_octopus_merge_bases() in commit.c
 - git-fmt-merge-msg: make it usable from other builtins
 - Move read_cache_unmerged() to read-cache.c
 - Add new test to ensure git-merge handles pull.twohead and
   pull.octopus
 - Move parse-options's skip_prefix() to git-compat-util.h
 - Move commit_list_count() to commit.c
 - Move split_cmdline() to alias.c

The last one is a huge patch and it will take some time to review and get
details sorted out.

* dr/ceiling (Mon May 19 23:49:34 2008 -0700) 4 commits
 + Eliminate an unnecessary chdir("..")
 + Add support for GIT_CEILING_DIRECTORIES
 + Fold test-absolute-path into test-path-utils
 + Implement normalize_absolute_path

* jc/rerere (Sun Jun 22 02:04:31 2008 -0700) 5 commits
 + rerere.autoupdate
 + t4200: fix rerere test
 + rerere: remove dubious "tail_optimization"
 + git-rerere: detect unparsable conflicts
 + rerere: rerere_created_at() and has_resolution() abstraction

A new configuration will allow paths that have been resolved cleanly by
rerere to be updated in the index automatically.

----------------------------------------------------------------
[Graduated to "master"]

* sb/rebase (Sun Jun 22 01:55:50 2008 +0200) 2 commits
 + t3404: stricter tests for git-rebase--interactive
 + api-builtin.txt: update and fix typo

* sb/maint-rebase (Sun Jun 22 16:07:02 2008 +0200) 1 commit
 + git-rebase.sh: Add check if rebase is in progress

* lw/gitweb (Thu Jun 19 22:03:21 2008 +0200) 1 commit
 + gitweb: standarize HTTP status codes

* lt/config-fsync (Wed Jun 18 15:18:44 2008 -0700) 4 commits
 + Add config option to enable 'fsync()' of object files
 + Split up default "i18n" and "branch" config parsing into helper
   routines
 + Split up default "user" config parsing into helper routine
 + Split up default "core" config parsing into helper routine

* sr/tests (Sun Jun 8 16:04:35 2008 +0200) 3 commits
 + Hook up the result aggregation in the test makefile.
 + A simple script to parse the results from the testcases
 + Modify test-lib.sh to output stats to t/test-results/*

* jh/clone-packed-refs (Sun Jun 15 16:06:16 2008 +0200) 4 commits
 + Teach "git clone" to pack refs
 + Prepare testsuite for a "git clone" that packs refs
 + Move pack_refs() and friends into libgit
 + Incorporate fetched packs in future object traversal

This is useful when cloning from a repository with insanely large number
of refs.

* lw/perlish (Thu Jun 19 22:32:49 2008 +0200) 2 commits
 + Git.pm: add test suite
 + t/test-lib.sh: add test_external and test_external_without_stderr

Beginning of regression tests for Perl part of the system.

----------------------------------------------------------------
[On Hold]

* ph/mergetool (Mon Jun 16 17:33:41 2008 -0600) 1 commit
 + Remove the use of '--' in merge program invocation

Waiting for success reports from people who use various backends.

* jk/renamelimit (Sat May 3 13:58:42 2008 -0700) 1 commit
 - diff: enable "too large a rename" warning when -M/-C is explicitly
   asked for

This would be the right thing to do for command line use, but gitk will be
hit due to tcl/tk's limitation, so I am holding this back for now.

----------------------------------------------------------------
[Stalled/Needs more work]

* jc/blame (Wed Jun 4 22:58:40 2008 -0700) 7 commits
 - blame: show "previous" information in --porcelain/--incremental
   format
 - git-blame: refactor code to emit "porcelain format" output
 + git-blame --reverse
 + builtin-blame.c: allow more than 16 parents
 + builtin-blame.c: move prepare_final() into a separate function.
 + rev-list --children
 + revision traversal: --children option

The blame that finds where each line in the original lines moved to.  This
may help a GSoC project that wants to gather statistical overview of the
history.  The final presentation may need tweaking (see the log message of
the commit ""git-blame --reverse" on the series).

The tip two commits are for peeling to see what's behind the blamed
commit, which we should be able to separate out into an independent topic
from the rest.

----------------------------------------------------------------
[Dropped for now]

* sj/merge (Sat May 3 16:55:47 2008 -0700) 6 commits
 . Introduce fast forward option only
 . Head reduction before selecting merge strategy
 . Restructure git-merge.sh
 . Introduce -ff=<fast forward option>
 . New merge tests
 . Documentation for joining more than two histories

This will interfere with Miklos's rewrite of merge to C.

* js/rebase-i-sequencer (Sun Apr 27 02:55:50 2008 -0400) 17 commits
 . Use perl instead of tac
 . Fix t3404 assumption that `wc -l` does not use whitespace.
 . rebase -i: Use : in expr command instead of match.
 . rebase -i: update the implementation of 'mark' command
 . Add option --preserve-tags
 . Teach rebase interactive the tag command
 . Add option --first-parent
 . Do rebase with preserve merges with advanced TODO list
 . Select all lines with fake-editor
 . Unify the length of $SHORT* and the commits in the TODO list
 . Teach rebase interactive the merge command
 . Move redo merge code in a function
 . Teach rebase interactive the reset command
 . Teach rebase interactive the mark command
 . Move cleanup code into it's own function
 . Don't append default merge message to -m message
 . fake-editor: output TODO list if unchanged

* jc/cherry-pick (Wed Feb 20 23:17:06 2008 -0800) 3 commits
 . WIP: rethink replay merge
 . Start using replay-tree merge in cherry-pick
 . revert/cherry-pick: start refactoring call to merge_recursive

This is meant to improve cherry-pick's behaviour when renames are
involved, by not using merge-recursive (whose d/f conflict resolution is
quite broken), but unfortunately has stalled for some time now.

* jc/stripspace (Sun Mar 9 00:30:35 2008 -0800) 6 commits
 . git-am --forge: add Signed-off-by: line for the author
 . git-am: clean-up Signed-off-by: lines
 . stripspace: add --log-clean option to clean up signed-off-by:
   lines
 . stripspace: use parse_options()
 . Add "git am -s" test
 . git-am: refactor code to add signed-off-by line for the committer

Just my toy at this moment.

* jc/send-pack-tell-me-more (Thu Mar 20 00:44:11 2008 -0700) 1 commit
 . "git push": tellme-more protocol extension

  parent reply	other threads:[~2008-06-29  8:56 UTC|newest]

Thread overview: 763+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-09 10:46 What's cooking in git.git (topics) Junio C Hamano
2008-03-12  7:50 ` Junio C Hamano
2008-03-12 12:18   ` Johannes Schindelin
2008-03-14  9:00   ` Junio C Hamano
2008-03-23 10:08     ` Junio C Hamano
2008-03-23 12:00       ` Samuel Tardieu
2008-03-23 17:15         ` Junio C Hamano
2008-03-23 22:34           ` Samuel Tardieu
2008-03-23 12:39       ` Steffen Prohaska
2008-03-23 17:37         ` Junio C Hamano
2008-03-23 21:06       ` Govind Salinas
2008-03-24  3:01         ` Junio C Hamano
2008-03-28  1:45       ` Junio C Hamano
2008-03-31  8:40         ` Junio C Hamano
2008-04-04 18:24           ` Junio C Hamano
2008-04-04 20:21             ` Kristian Høgsberg
2008-04-04 20:52               ` Junio C Hamano
2008-04-05  0:26                 ` Johannes Schindelin
2008-04-05  5:51                   ` Junio C Hamano
2008-04-09  9:43             ` Junio C Hamano
2008-04-14  7:00               ` Junio C Hamano
2008-04-15 19:23                 ` Jeff King
2008-04-19  8:19                 ` Junio C Hamano
2008-04-19 14:23                   ` Johannes Schindelin
2008-04-19 16:34                   ` Lars Hjemli
2008-04-20  4:08                     ` Junio C Hamano
2008-04-21 16:10                   ` Brandon Casey
2008-04-22 10:03                   ` Junio C Hamano
2008-04-22 13:59                     ` Ping Yin
2008-04-22 14:55                       ` Josef Weidendorfer
2008-04-22 17:13                         ` Ping Yin
2008-04-22 17:28                           ` Johannes Schindelin
2008-04-23  1:27                             ` Ping Yin
2008-04-23  2:03                               ` Ping Yin
2008-04-22 18:07                           ` Josef Weidendorfer
2008-04-23  1:59                             ` Ping Yin
2008-04-23  7:47                               ` Fedor Sergeev
2008-04-23  8:32                                 ` Ping Yin
2008-04-23  8:47                                 ` Robin Rosenberg
2008-04-23  9:16                                   ` Fedor Sergeev
2008-04-22 20:51                     ` Michele Ballabio
2008-04-23  0:22                       ` Junio C Hamano
2008-04-23  7:36                         ` Michele Ballabio
2008-04-27  6:04                     ` Junio C Hamano
2008-04-27  6:44                       ` Ping Yin
2008-05-06  6:38                       ` Junio C Hamano
2008-05-12 22:03                         ` Junio C Hamano
2008-05-13  0:02                           ` Junio C Hamano
2008-05-14 22:30                         ` Junio C Hamano
2008-05-14 22:55                           ` Daniel Barkalow
2008-05-15  4:30                             ` Junio C Hamano
2008-05-15  5:51                           ` Steffen Prohaska
2008-05-22  1:18                           ` Junio C Hamano
2008-05-22 11:35                             ` Johannes Schindelin
2008-05-22 18:17                               ` Junio C Hamano
2008-05-22 22:02                                 ` Daniel Barkalow
2008-05-25 21:29                               ` Stephan Beyer
2008-05-26  1:22                             ` Junio C Hamano
2008-05-27  5:36                               ` [PATCH] git-diff: allow --no-index semantics a bit more Junio C Hamano
2008-05-30 20:44                               ` What's cooking in git.git (topics) Junio C Hamano
2008-05-30 21:10                                 ` Jon Loeliger
2008-05-31  1:25                                   ` Stephan Beyer
2008-05-30 22:00                                 ` Steven Grimm
2008-06-02  7:58                                 ` Junio C Hamano
2008-06-02  8:10                                   ` Jakub Narebski
2008-06-02 11:56                                   ` Sebastian Bober
2008-06-02 15:17                                   ` Johannes Schindelin
2008-06-02 15:43                                     ` Shawn O. Pearce
2008-06-02 16:14                                       ` Johannes Schindelin
2008-06-02 18:13                                         ` Junio C Hamano
2008-06-02 19:17                                           ` Johannes Schindelin
2008-06-02 19:25                                             ` Johannes Schindelin
2008-06-13 10:16                                   ` Junio C Hamano
2008-06-18  7:31                                     ` Junio C Hamano
2008-06-19  8:58                                       ` Johan Herland
2008-06-21  9:44                                       ` Junio C Hamano
2008-06-21 12:14                                         ` Miklos Vajna
2008-06-24  7:59                                           ` Junio C Hamano
2008-06-24  8:12                                             ` Pieter de Bie
2008-06-24  8:16                                               ` Pieter de Bie
2008-06-24 16:02                                               ` Miklos Vajna
2008-06-24 16:25                                                 ` Johannes Schindelin
2008-06-24 18:54                                                   ` Miklos Vajna
2008-06-24 19:08                                                     ` Johannes Schindelin
2008-06-24 19:31                                                       ` Jakub Narebski
2008-06-24 19:34                                                         ` Johannes Schindelin
2008-06-24 20:06                                                           ` Jakub Narebski
2008-06-26 15:41                                                           ` Jakub Narebski
2008-06-24 20:44                                                       ` Junio C Hamano
2008-06-24 22:10                                                         ` Miklos Vajna
2008-06-24 23:16                                                           ` Junio C Hamano
2008-06-24 23:32                                                             ` Miklos Vajna
2008-06-25  2:57                                                               ` Junio C Hamano
2008-06-25  3:08                                                               ` しらいしななこ
2008-06-25  3:22                                                                 ` [PATCH] Keep some git-* programs in $(bindir) Junio C Hamano
2008-06-25  3:26                                                                   ` [PATCH] Ask for "git program" when asking for "git-program" over SSH connection Junio C Hamano
2008-06-25  3:45                                                                     ` Shawn O. Pearce
2008-06-25  4:32                                                                       ` Junio C Hamano
2008-06-25  4:44                                                                         ` Shawn O. Pearce
2008-06-25  5:09                                                                           ` Junio C Hamano
2008-06-25  5:13                                                                             ` Junio C Hamano
2008-06-25  5:27                                                                               ` Junio C Hamano
2008-06-25  5:38                                                                                 ` Shawn O. Pearce
2008-06-25 22:47                                                                                   ` [PATCH] daemon: accept "git program" as well Junio C Hamano
2008-06-25 22:55                                                                                     ` [PATCH] Make clients ask for "git program" over ssh and local transport Junio C Hamano
2008-06-25 22:58                                                                                       ` [PATCH] Ask for "git program" even against git-daemon Junio C Hamano
2008-06-25 23:27                                                                                         ` Shawn O. Pearce
2008-06-25 23:36                                                                                           ` Junio C Hamano
2008-06-25 23:57                                                                                             ` Shawn O. Pearce
2008-06-26  0:07                                                                                               ` Junio C Hamano
2008-06-25 23:13                                                                                       ` [PATCH] Make clients ask for "git program" over ssh and local transport Shawn O. Pearce
2008-06-25 23:02                                                                                     ` [PATCH] daemon: accept "git program" as well Shawn O. Pearce
2008-06-25 23:26                                                                                       ` Junio C Hamano
2008-06-26  8:20                                                                                         ` Tommi Virtanen
2008-06-26 23:38                                                                                           ` Olivier Marin
2008-06-26 23:42                                                                                             ` Junio C Hamano
2008-06-25 13:06                                                                                 ` [PATCH] Ask for "git program" when asking for "git-program" over SSH connection Theodore Tso
2008-06-25 17:42                                                                                   ` Junio C Hamano
2008-06-25  5:34                                                                               ` Shawn O. Pearce
2008-06-25  5:53                                                                                 ` Junio C Hamano
2008-06-25  5:30                                                                           ` Junio C Hamano
2008-06-25  4:17                                                                   ` [PATCH] Keep some git-* programs in $(bindir) Shawn O. Pearce
2008-06-25  4:19                                                                   ` Daniel Barkalow
2008-06-25  4:37                                                                     ` Shawn O. Pearce
2008-06-25  3:26                                                                 ` What's cooking in git.git (topics) Shawn O. Pearce
2008-06-25  0:11                                                             ` Jakub Narebski
2008-06-25  3:32                                                               ` Shawn O. Pearce
2008-06-25  7:29                                                               ` Miklos Vajna
2008-06-23  7:15                                         ` Junio C Hamano
2008-06-23 12:15                                           ` Miklos Vajna
2008-06-25  9:31                                           ` Junio C Hamano
2008-06-29  8:50                                             ` [PATCH] Make default expiration period of reflog used for stash infinite Junio C Hamano
2008-06-30 23:45                                               ` Olivier Marin
2008-07-01  7:28                                                 ` Junio C Hamano
2008-07-02 10:59                                                   ` [PATCH] Disconnect stash from its base commit Nanako Shiraishi
2008-07-02 13:51                                                     ` Johannes Schindelin
2008-07-02 19:01                                                       ` Junio C Hamano
2008-07-02 19:54                                                         ` Abhijit Menon-Sen
2008-07-02 21:04                                                           ` Junio C Hamano
2008-07-03  2:23                                                             ` [PATCH] Implement "git stash branch <newbranch> <stash>" Abhijit Menon-Sen
2008-07-03  4:12                                                               ` Junio C Hamano
2008-07-03  6:16                                                                 ` Abhijit Menon-Sen
2008-07-06 11:23                                                                   ` [PATCH v3] " Abhijit Menon-Sen
2008-07-06 12:54                                                                     ` Johannes Schindelin
2008-07-06 14:45                                                                       ` [PATCH] Add a test for "git stash branch" Abhijit Menon-Sen
2008-07-06 19:53                                                                         ` Junio C Hamano
2008-07-06 21:20                                                                           ` [PATCH v2] " Abhijit Menon-Sen
2008-06-29  8:50                                             ` [PATCH] Teach git-merge to pass -X<option> to the backend strategy module Junio C Hamano
2008-06-29 10:32                                               ` Jakub Narebski
2008-06-29 19:09                                                 ` Junio C Hamano
2008-06-29  8:55                                             ` Junio C Hamano [this message]
2008-06-29 18:35                                               ` What's cooking in git.git (topics) Linus Torvalds
2008-06-29 19:08                                                 ` Junio C Hamano
2008-06-29 20:11                                                 ` Junio C Hamano
2008-06-29 20:15                                                   ` Pieter de Bie
2008-06-29 21:57                                                     ` Johannes Schindelin
2008-06-29 22:00                                                     ` Steffen Prohaska
2008-06-30  3:30                                               ` Jeff King
2008-06-30  5:31                                                 ` Junio C Hamano
2008-06-30  5:33                                                   ` Jeff King
2008-06-30  5:38                                                     ` Junio C Hamano
2008-06-30  9:08                                               ` Junio C Hamano
2008-06-30 11:19                                                 ` How to reduce remaining differences to 4msysgit? (was What's cooking in git.git (topics)) Steffen Prohaska
2008-06-30 18:47                                                   ` [msysGit] " Johannes Sixt
2008-07-01  0:03                                                     ` Clifford Caoile
2008-07-02  8:31                                                     ` Steffen Prohaska
2008-07-02  8:32                                                       ` [PATCH 01/12] Fake reencoding success under NO_ICONV instead of returning NULL Steffen Prohaska
2008-07-02  8:32                                                         ` [PATCH 02/12] Do not complain about "no common commits" in an empty repo Steffen Prohaska
2008-07-02  8:32                                                           ` [PATCH 03/12] MinGW: Convert CR/LF to LF in tag signatures Steffen Prohaska
2008-07-02  8:32                                                             ` [PATCH 04/12] Avoid calling signal(SIGPIPE, ..) for MinGW builds Steffen Prohaska
2008-07-02  8:32                                                               ` [PATCH 05/12] Windows(msysgit): Per default, display help as HTML in default browser Steffen Prohaska
2008-07-02  8:32                                                                 ` [PATCH 06/12] connect: Fix custom ports with plink (Putty's ssh) Steffen Prohaska
2008-07-02  8:32                                                                   ` [PATCH 07/12] Fixed text file auto-detection: treat EOF character 032 at the end of file as printable Steffen Prohaska
2008-07-02  8:32                                                                     ` [PATCH 08/12] fast-import: MinGW does not have getppid(). So do not print it Steffen Prohaska
2008-07-02  8:32                                                                       ` [PATCH 09/12] We need to check for msys as well as Windows in add--interactive Steffen Prohaska
2008-07-02  8:32                                                                         ` [PATCH 10/12] Add ANSI control code emulation for the Windows console Steffen Prohaska
2008-07-02  8:32                                                                           ` [PATCH 11/12] verify_path(): do not allow absolute paths Steffen Prohaska
2008-07-02  8:32                                                                             ` [PATCH 12/12] [TODO] setup: bring changes from 4msysgit/next to next Steffen Prohaska
2008-07-02 16:17                                                                               ` [msysGit] " Johannes Schindelin
2008-07-02 17:08                                                                                 ` Steffen Prohaska
2008-07-02 19:32                                                                                   ` [msysGit] " Johannes Sixt
2008-07-03  6:06                                                                                     ` Steffen Prohaska
2008-07-03  6:13                                                                                       ` Junio C Hamano
2008-07-02  9:21                                                                             ` [PATCH 11/12] verify_path(): do not allow absolute paths Junio C Hamano
2008-07-02 14:24                                                                               ` Steffen Prohaska
2008-07-02 16:15                                                                               ` Johannes Schindelin
2008-07-02 17:20                                                                                 ` Steffen Prohaska
2008-07-02 17:31                                                                                   ` Johannes Schindelin
2008-07-02 19:17                                                                           ` [msysGit] [PATCH 10/12] Add ANSI control code emulation for the Windows console Johannes Sixt
2008-07-02 19:32                                                                             ` Peter Harris
2008-07-07 18:41                                                                           ` Johannes Sixt
2008-07-02  9:20                                                                       ` [PATCH 08/12] fast-import: MinGW does not have getppid(). So do not print it Junio C Hamano
2008-07-02 14:22                                                                         ` Steffen Prohaska
2008-07-02 16:52                                                                         ` Johannes Schindelin
2008-07-02  9:16                                                                     ` [PATCH 07/12] Fixed text file auto-detection: treat EOF character 032 at the end of file as printable Junio C Hamano
2008-07-11 16:48                                                                       ` [PATCH] " Steffen Prohaska
2008-07-11 18:42                                                                         ` Johannes Schindelin
2008-07-11 20:32                                                                           ` Steffen Prohaska
2008-07-11 20:40                                                                             ` Johannes Schindelin
2008-07-02 19:04                                                                   ` [PATCH 06/12] connect: Fix custom ports with plink (Putty's ssh) Johannes Sixt
2008-07-03 11:10                                                                     ` Johannes Schindelin
2008-07-04  8:50                                                                       ` Steffen Prohaska
2008-07-04  9:18                                                                     ` Junio C Hamano
2008-07-04  9:29                                                                       ` Steffen Prohaska
2008-07-04 16:09                                                                         ` Clifford Caoile
2008-07-04 20:11                                                                           ` [msysGit] " Edward Z. Yang
2008-07-02  9:11                                                                 ` [PATCH 05/12] Windows(msysgit): Per default, display help as HTML in default browser Junio C Hamano
2008-07-02 18:57                                                                 ` Johannes Sixt
2008-07-04  9:06                                                                   ` Steffen Prohaska
2008-07-04  9:09                                                                     ` [PATCH 1/2] help.c: Add support for htmldir relative to git_exec_path() Steffen Prohaska
2008-07-04  9:09                                                                       ` [PATCH 2/2] help (Windows): Display HTML in default browser using Win32 API Steffen Prohaska
2008-07-04  9:26                                                                       ` [PATCH 1/2] help.c: Add support for htmldir relative to git_exec_path() Junio C Hamano
2008-07-04 12:35                                                                         ` Johannes Schindelin
2008-07-11  7:27                                                                           ` Steffen Prohaska
2008-07-11  7:28                                                                             ` [PATCH 1/3] Move code interpreting path relative to exec-dir to new function system_path() Steffen Prohaska
2008-07-11  7:28                                                                               ` [PATCH 2/3] help.c: Add support for htmldir relative to git_exec_path() Steffen Prohaska
2008-07-11  7:28                                                                                 ` [PATCH 3/3] help (Windows): Display HTML in default browser using Windows' shell API Steffen Prohaska
2008-07-11  7:35                                                                                   ` Steffen Prohaska
2008-07-11  7:37                                                                                     ` [PATCH 3/3 FIXED] " Steffen Prohaska
2008-07-12  3:26                                                                                       ` Junio C Hamano
2008-07-12  6:45                                                                                         ` Steffen Prohaska
2008-07-12  7:07                                                                                           ` Junio C Hamano
2008-07-12 20:41                                                                                             ` Johannes Sixt
2008-07-13  8:58                                                                                               ` Junio C Hamano
2008-07-13 20:31                                                                                                 ` [PATCH] Move code interpreting path relative to exec-dir to new function system_path() Johannes Sixt
2008-07-13 20:31                                                                                                   ` [PATCH] help.c: Add support for htmldir relative to git_exec_path() Johannes Sixt
2008-07-13 20:31                                                                                                     ` [PATCH] help (Windows): Display HTML in default browser using Windows' shell API Johannes Sixt
2008-07-13 20:31                                                                                                       ` [PATCH] Fix relative built-in paths to be relative to the command invocation Johannes Sixt
2008-07-13 20:31                                                                                                         ` [PATCH] Allow the built-in exec path to be relative to the command invocation path Johannes Sixt
2008-07-13 20:31                                                                                                           ` [PATCH] Allow add_path() to add non-existent directories to the path Johannes Sixt
2008-07-14  7:13                                                                                                             ` Johannes Sixt
2008-07-13 20:45                                                                                                           ` [PATCH] Allow the built-in exec path to be relative to the command invocation path Johannes Schindelin
2008-07-13 20:43                                                                                                         ` [PATCH] Fix relative built-in paths to be relative to the command invocation Johannes Schindelin
2008-07-14  6:55                                                                                                           ` Johannes Sixt
2008-07-14 12:20                                                                                                             ` Johannes Schindelin
2008-07-14 18:54                                                                                                               ` Johannes Sixt
2008-07-14 19:03                                                                                                                 ` Junio C Hamano
2008-07-14  8:47                                                                                                           ` Johannes Sixt
2008-07-14 21:41                                                                                                             ` [PATCH 0/5] replacement for the part of js/more-win that is in pu Johannes Sixt
2008-07-14 21:41                                                                                                               ` [PATCH 1/5] Makefile: Normalize $(bindir) and $(gitexecdir) before comparing Johannes Sixt
2008-07-14 21:41                                                                                                                 ` [PATCH 2/5] Record the command invocation path early Johannes Sixt
2008-07-14 21:41                                                                                                                   ` [PATCH 3/5] Fix relative built-in paths to be relative to the command invocation Johannes Sixt
2008-07-14 21:41                                                                                                                     ` [PATCH 4/5] Allow the built-in exec path to be relative to the command invocation path Johannes Sixt
2008-07-14 21:41                                                                                                                       ` [PATCH 5/5] Allow add_path() to add non-existent directories to the path Johannes Sixt
2008-07-15  7:59                                                                                                               ` [PATCH 0/5] replacement for the part of js/more-win that is in pu Johannes Sixt
2008-07-11  9:02                                                                             ` [PATCH 1/2] help.c: Add support for htmldir relative to git_exec_path() Johannes Sixt
2008-07-02  9:22                                                               ` [PATCH 04/12] Avoid calling signal(SIGPIPE, ..) for MinGW builds Junio C Hamano
2008-07-02 10:03                                                                 ` Marius Storm-Olsen
2008-07-02 14:29                                                                   ` Steffen Prohaska
2008-07-02 18:46                                                             ` [msysGit] [PATCH 03/12] MinGW: Convert CR/LF to LF in tag signatures Johannes Sixt
2008-07-03 11:08                                                               ` Johannes Schindelin
2008-07-11 16:55                                                               ` [PATCH] " Steffen Prohaska
2008-07-02  8:58                                                           ` [PATCH 02/12] Do not complain about "no common commits" in an empty repo Junio C Hamano
2008-07-02 14:04                                                             ` Steffen Prohaska
2008-07-02 17:07                                                               ` Johannes Schindelin
2008-07-02 18:43                                                         ` [PATCH 01/12] Fake reencoding success under NO_ICONV instead of returning NULL Johannes Sixt
2008-06-30 14:09                                                 ` What's cooking in git.git (topics) Kristian Høgsberg
2008-06-30 15:58                                                   ` Jakub Narebski
2008-06-30 22:15                                                     ` Junio C Hamano
2008-06-30 22:15                                                   ` Junio C Hamano
2008-06-30 22:51                                                     ` Andrew Morton
2008-06-30 23:09                                                       ` Johannes Schindelin
2008-06-30 22:53                                                     ` Petr Baudis
2008-07-01  0:57                                                     ` Stephen Rothwell
2008-07-01 15:44                                                     ` Kristian Høgsberg
2008-07-01 10:11                                                 ` Jeff King
2008-07-01 11:44                                                   ` [PATCH] git-add--interactive: manual hunk editing mode Thomas Rast
2008-07-01 16:48                                                     ` Johannes Schindelin
2008-07-01 23:54                                                     ` Junio C Hamano
2008-07-02  5:39                                                     ` Junio C Hamano
2008-07-02  7:00                                                       ` Thomas Rast
2008-07-02  8:38                                                         ` Junio C Hamano
2008-07-02  8:02                                                       ` Jeff King
2008-07-02  8:08                                                         ` Junio C Hamano
2008-07-02  8:32                                                           ` Jeff King
2008-07-02 13:13                                                             ` Johannes Schindelin
2008-07-02 18:27                                                               ` Junio C Hamano
2008-07-02 21:58                                                       ` [PATCH 0/3] git-add--interactive: use --recount, editing Thomas Rast
2008-07-02 21:59                                                         ` [PATCH 1/3] git-add--interactive: replace hunk recounting with apply --recount Thomas Rast
2008-07-02 21:59                                                           ` [PATCH 2/3] git-add--interactive: remove hunk coalescing Thomas Rast
2008-07-02 22:00                                                             ` [PATCH 3/3] git-add--interactive: manual hunk editing mode Thomas Rast
2008-07-02 22:26                                                             ` [PATCH 2/3] git-add--interactive: remove hunk coalescing Junio C Hamano
2008-07-02 22:35                                                               ` Junio C Hamano
2008-07-03 19:24                                                                 ` Thomas Rast
2008-07-03 21:46                                                                   ` Junio C Hamano
2008-07-02  4:41                                                 ` What's cooking in git.git (topics) Junio C Hamano
2008-07-06 10:04                                                   ` Junio C Hamano
2008-07-06 11:10                                                     ` Johannes Schindelin
2008-07-07  1:36                                                       ` Junio C Hamano
2008-07-08  2:46                                                     ` Junio C Hamano
2008-07-10  2:32                                                       ` Junio C Hamano
2008-07-14  5:11                                                         ` Junio C Hamano
2008-07-14  6:45                                                           ` Junio C Hamano
2008-07-14  7:50                                                           ` Closing the merge window for 1.6.0 Junio C Hamano
2008-07-14  8:07                                                             ` Johannes Sixt
2008-07-14  8:50                                                             ` Jakub Narebski
2008-07-14  8:55                                                             ` Petr Baudis
2008-07-14 11:57                                                               ` Johannes Schindelin
2008-07-14 12:41                                                                 ` Gerrit Pape
2008-07-14 12:56                                                                   ` Johannes Schindelin
2008-07-14 17:54                                                                   ` Nicolas Pitre
2008-07-14 19:00                                                                     ` Junio C Hamano
2008-07-14 19:19                                                                       ` Teemu Likonen
2008-07-15  3:14                                                                         ` Martin Langhoff
2008-07-15  9:20                                                                       ` Petr Baudis
2008-07-15 15:06                                                                         ` Dmitry Potapov
2008-07-15 15:27                                                                           ` Johannes Schindelin
2008-07-15 15:51                                                                             ` Avery Pennarun
2008-07-15 16:26                                                                             ` Nicolas Pitre
2008-07-15 16:46                                                                               ` Sverre Rabbelier
2008-07-15 17:28                                                                               ` Petr Baudis
2008-07-15 17:04                                                                             ` Dmitry Potapov
2008-07-15 18:51                                                                             ` Junio C Hamano
2008-07-15 22:10                                                                               ` Johannes Schindelin
2008-07-15 22:33                                                                                 ` Junio C Hamano
2008-07-15 22:45                                                                                   ` Johannes Schindelin
2008-07-15  2:51                                                                     ` Shawn O. Pearce
2008-07-15  3:30                                                                       ` Nicolas Pitre
2008-07-14 12:43                                                                 ` Petr Baudis
2008-07-20  2:23                                                                   ` Nick Andrew
2008-07-14 19:16                                                               ` Junio C Hamano
2008-07-15  9:09                                                                 ` Petr Baudis
2008-07-14 11:53                                                           ` What's cooking in git.git (topics) Johannes Schindelin
2008-07-14 23:12                                                           ` Lea Wiemann
2008-07-14 23:20                                                             ` Lea Wiemann
2008-07-15  0:03                                                               ` Junio C Hamano
2008-07-15  3:38                                                           ` Geoffrey Irving
2008-07-15  9:22                                                             ` Johannes Schindelin
2008-07-15 16:48                                                               ` Geoffrey Irving
2008-07-16  3:33                                                           ` Junio C Hamano
2008-07-17  8:08                                                             ` Junio C Hamano
2008-07-17 13:09                                                               ` Stephan Beyer
2008-07-18  8:50                                                               ` Nanako Shiraishi
2008-07-18  9:08                                                                 ` Junio C Hamano
2008-07-18  9:20                                                                 ` Nanako Shiraishi
2008-07-18  9:43                                                                   ` Junio C Hamano
2008-07-18 11:55                                                                     ` Johannes Schindelin
2008-07-19  5:32                                                                       ` Junio C Hamano
2008-07-19 11:19                                                                         ` Johannes Schindelin
2008-07-19 16:55                                                                           ` Junio C Hamano
2008-07-19 23:16                                                                             ` Johannes Schindelin
2008-07-20 13:04                                                                           ` Miklos Vajna
2008-07-20 13:16                                                                             ` Johannes Schindelin
2008-07-20 18:27                                                                             ` Junio C Hamano
2008-07-20 19:07                                                                               ` Johannes Schindelin
2008-07-20 19:58                                                                                 ` Junio C Hamano
2008-07-20 20:03                                                                                   ` Sverre Rabbelier
2008-07-20 20:33                                                                                     ` Miklos Vajna
2008-07-20 22:58                                                                                       ` Sverre Rabbelier
2008-07-21  8:47                                                                                         ` Jakub Narebski
2008-07-20 20:33                                                                                     ` Junio C Hamano
2008-07-20 22:24                                                                                   ` Johannes Schindelin
2008-07-18  9:44                                                                   ` Petr Baudis
2008-07-18  9:58                                                                     ` Junio C Hamano
2010-12-13 19:09                                                                       ` Yaroslav Halchenko
2010-12-13 20:46                                                                         ` Junio C Hamano
2010-12-13 21:46                                                                           ` Yaroslav Halchenko
2010-12-13 22:15                                                                             ` Junio C Hamano
2010-12-13 22:36                                                                               ` Yaroslav Halchenko
2010-12-14  7:23                                                                             ` Johannes Sixt
2010-12-14 14:21                                                                               ` Yaroslav Halchenko
2008-07-19  5:13                                                                     ` Nanako Shiraishi
2008-07-18 11:56                                                                 ` Johannes Schindelin
2008-07-20 10:20                                                                 ` Nanako Shiraishi
2008-07-20  1:58                                                               ` Junio C Hamano
2008-07-20 22:40                                                                 ` Petr Baudis
2008-07-20 23:04                                                                   ` Junio C Hamano
2008-06-30 14:59                                               ` Brandon Casey
  -- strict thread matches above, loose matches on Subject: below --
2008-02-03 10:59 Junio C Hamano
2008-02-03 21:43 ` Johannes Schindelin
2008-02-05  9:37 ` Junio C Hamano
2008-02-05 10:24   ` Jakub Narebski
2008-02-06  9:31     ` Junio C Hamano
2008-02-07  2:03   ` Junio C Hamano
2008-02-07  5:05     ` Jeff King
2008-02-07  9:43       ` Lars Hjemli
2008-02-07 10:32     ` Jakub Narebski
2008-02-10 10:48     ` Junio C Hamano
2008-02-10 16:29       ` Jakub Narebski
2008-02-10 16:48         ` Johannes Schindelin
2008-02-10 22:09         ` Junio C Hamano
2008-02-10 22:09         ` Junio C Hamano
2008-02-12  7:24       ` Junio C Hamano
2008-02-17  3:59         ` Junio C Hamano
2008-02-17 12:41           ` Jeff King
2008-02-17 13:52           ` Jakub Narebski
2008-02-17 18:59             ` Junio C Hamano
2008-02-17 22:01               ` Jakub Narebski
2008-02-18  0:37                 ` Junio C Hamano
2008-02-18  1:05                   ` Jakub Narebski
2008-02-17 15:48           ` Matthias Kestenholz
2008-02-17 18:10             ` Junio C Hamano
2008-02-17 18:22               ` Jeff King
2008-02-21  4:16           ` Junio C Hamano
2008-02-21 10:40             ` Johannes Schindelin
2008-02-21 16:47               ` Junio C Hamano
2008-02-22 18:47               ` Brandon Casey
2008-02-22 22:26                 ` Junio C Hamano
2008-02-23  0:19                   ` Brandon Casey
2008-02-23  0:29                     ` Junio C Hamano
2008-02-23  0:51                     ` Junio C Hamano
2008-02-23  2:43                       ` Brandon Casey
2008-02-25  8:40             ` Junio C Hamano
2008-02-28  0:45               ` Junio C Hamano
2008-03-01 20:15                 ` Junio C Hamano
2008-03-02 14:02                   ` Shawn O. Pearce
2008-03-03  2:06                   ` Junio C Hamano
2008-03-06  5:49                     ` Junio C Hamano
2008-03-06 17:01                       ` Johannes Schindelin
2008-03-08  9:38                       ` Junio C Hamano
     [not found] <200711270622.lAR6MFXR010010@mi0.bluebottle.com>
2007-11-27  8:52 ` Jakub Narebski
2007-11-27  6:21 しらいしななこ
2007-11-27 11:12 ` Johannes Schindelin
2007-11-27 13:45   ` Andreas Ericsson
2007-11-27 13:54     ` Johannes Schindelin
2007-11-27 15:18       ` Andreas Ericsson
2007-11-27 14:29   ` Nicolas Pitre
2007-11-27 15:08     ` J. Bruce Fields
2007-11-27 15:19       ` Nicolas Pitre
2007-11-27 15:34         ` J. Bruce Fields
2007-11-27 16:14           ` Nicolas Pitre
2007-11-27 16:42             ` J. Bruce Fields
2007-11-27 16:54               ` Johannes Schindelin
2007-11-27 17:07                 ` J. Bruce Fields
2007-11-28  8:12                   ` Andreas Ericsson
2007-11-27 17:23               ` Nicolas Pitre
2007-11-29  1:00                 ` Junio C Hamano
2007-11-29  1:06                   ` J. Bruce Fields
2007-11-29  1:26                     ` Junio C Hamano
2007-11-29  8:24                   ` Johan Herland
2007-11-29 17:47                   ` Nicolas Pitre
2007-11-27 17:22   ` Junio C Hamano
2007-11-27 17:29     ` Johannes Schindelin
2007-10-22  6:32 What's cooking in git/spearce.git (topics) Shawn O. Pearce
2007-10-24 12:51 ` What's cooking in git.git (topics) Junio C Hamano
2007-10-24 13:09   ` David Symonds
2007-10-24 16:08   ` Scott Parish
2007-10-24 18:27     ` Andreas Ericsson
2007-10-25  0:35       ` Scott Parish
2007-11-01  5:41   ` Junio C Hamano
2007-11-01 11:02     ` Jakub Narebski
2007-11-01 20:57       ` Junio C Hamano
2007-11-01 18:33     ` Linus Torvalds
2007-11-01 19:19       ` Geert Bosch
2007-11-01 20:27         ` Junio C Hamano
2007-11-01 20:47           ` Mike Hommey
2007-11-01 21:20             ` Junio C Hamano
2007-11-02  0:32               ` Junio C Hamano
2007-11-01 21:44             ` Pierre Habouzit
2007-11-01 21:17           ` Geert Bosch
2007-11-02  0:00             ` Jonas Fonseca
2007-11-01 21:18           ` Theodore Tso
2007-11-01 21:26             ` Melchior FRANZ
2007-11-01 21:32           ` Johan Herland
2007-11-01 21:51             ` Junio C Hamano
2007-11-01 22:05               ` Linus Torvalds
2007-11-01 22:26                 ` Bill Lear
2007-11-01 22:50                 ` Junio C Hamano
2007-11-02  2:19                 ` Petr Baudis
2007-11-01 21:42           ` Pierre Habouzit
2007-11-02  9:39             ` Andreas Ericsson
2007-11-01 21:57       ` Pierre Habouzit
2007-11-02  0:04       ` Jakub Narebski
2007-11-02  2:23         ` Petr Baudis
2007-11-02  7:25           ` Jakub Narebski
2007-11-02  7:28             ` Jakub Narebski
2007-11-02  8:42               ` Pierre Habouzit
2007-11-02  6:06       ` Miles Bader
2007-11-02 15:13         ` Miles Bader
2007-11-02  9:38       ` Andreas Ericsson
2007-11-02 11:03         ` Johannes Schindelin
2007-11-01 21:41     ` Brian Downing
2007-11-01 21:46       ` Pierre Habouzit
2007-11-02 10:26       ` Wincent Colaiuta
2007-11-04  4:14     ` Junio C Hamano
2007-11-04  9:43       ` Jakub Narebski
2007-11-04 11:38       ` Pierre Habouzit
2007-11-08  8:08       ` Junio C Hamano
2007-11-08 20:44         ` Steffen Prohaska
2007-11-12  7:09         ` Junio C Hamano
2007-11-12 12:21           ` Johannes Schindelin
2007-11-12 12:26             ` Pierre Habouzit
2007-11-12 12:33               ` Johannes Schindelin
2007-11-12 14:53                 ` Pierre Habouzit
2007-11-12 14:27             ` Steffen Prohaska
2007-11-12 15:02               ` Johannes Schindelin
2007-11-15  0:18           ` Junio C Hamano
2007-11-15  0:49             ` Johannes Schindelin
2007-11-17 12:40             ` Jeff King
2007-11-17 20:51             ` Junio C Hamano
2007-11-17 23:42               ` Alex Riesen
2007-11-18  1:29                 ` Junio C Hamano
2007-11-21  9:23               ` Junio C Hamano
2007-11-23  8:48                 ` Junio C Hamano
2007-11-23 10:30                   ` Jeff King
2007-11-23 13:23                     ` Johannes Schindelin
2007-11-24 11:38                       ` Jeff King
2007-11-24 15:47                         ` Nicolas Pitre
2007-11-24 19:09                           ` Junio C Hamano
2007-11-25 21:51                             ` J. Bruce Fields
2007-11-25 22:42                               ` Junio C Hamano
2007-11-25 23:08                                 ` J. Bruce Fields
2007-11-26  4:02                               ` Nicolas Pitre
2007-11-26  4:15                                 ` J. Bruce Fields
2007-11-26  4:29                                   ` Nicolas Pitre
2007-11-26  4:45                                     ` J. Bruce Fields
2007-11-26  9:03                                     ` Jakub Narebski
2007-11-26  9:09                                       ` Andreas Ericsson
2007-11-26 19:11                                       ` Nicolas Pitre
2007-11-26 19:24                                         ` David Kastrup
2007-11-26 20:25                                           ` Nicolas Pitre
2007-11-26 20:40                                             ` Junio C Hamano
2007-11-26 20:45                                             ` David Kastrup
2007-11-26 21:09                                               ` Nicolas Pitre
2007-11-26 21:22                                                 ` David Kastrup
2007-11-26 22:02                                                   ` Nicolas Pitre
2007-11-26 23:05                                                     ` David Kastrup
2007-11-26 23:28                                                       ` Nicolas Pitre
2007-11-26 23:52                                                         ` David Kastrup
2007-11-27  4:05                                                           ` Nicolas Pitre
2007-12-05 21:58                                                 ` Miles Bader
2007-11-26 21:14                                             ` Jakub Narebski
2007-11-26 21:36                                               ` Johannes Schindelin
2007-11-26 21:47                                                 ` Nicolas Pitre
2007-11-26  6:15                                   ` Jan Hudec
2007-11-25 20:27                   ` Junio C Hamano
2007-11-25 20:36                     ` Jakub Narebski
2007-11-25 20:53                       ` J. Bruce Fields
2007-12-01  2:37                     ` Junio C Hamano
2007-12-01  8:55                       ` Eric Wong
2007-12-02 14:40                       ` Johannes Schindelin
2007-12-04  8:43                       ` Junio C Hamano
2007-12-04  9:40                         ` Johannes Sixt
2007-12-04 20:03                           ` Steffen Prohaska
2007-12-05 10:59                         ` Junio C Hamano
2007-12-05 11:08                           ` Jakub Narebski
2007-12-05 11:10                           ` Jakub Narebski
2007-12-06  4:43                             ` Jeff King
2007-12-06  4:32                           ` Jeff King
2007-12-07  9:51                           ` Junio C Hamano
2007-12-07 11:11                             ` Jakub Narebski
2007-12-07 19:29                               ` Junio C Hamano
2007-12-07 21:36                             ` Miklos Vajna
2007-12-09 10:27                             ` Junio C Hamano
2007-12-13  2:48                               ` Junio C Hamano
2007-12-13  3:22                                 ` Nicolas Pitre
2007-12-17  8:40                                 ` Junio C Hamano
2007-12-23  9:20                                   ` Junio C Hamano
2008-01-05 11:01                                     ` Junio C Hamano
2008-01-05 16:04                                       ` Johannes Schindelin
2007-12-04 16:18                       ` Brian Downing
2007-09-06  8:52 Junio C Hamano
     [not found] ` <7v1wd1d0le.fsf@gitster.siamese.dyndns.org>
2007-09-14 18:30   ` Shawn O. Pearce
2007-09-14 23:47   ` Johannes Schindelin
2007-09-26 21:07     ` Carlos Rica
2007-09-26 20:05   ` Junio C Hamano
2007-09-26 21:44     ` Johannes Schindelin
2007-09-26 21:53       ` Tom Clarke
2007-09-27  2:36     ` Jeff King
2007-09-27  6:08       ` David Kastrup
2007-09-27  6:43         ` David Kastrup
2007-09-27 13:30         ` Jeff King
2007-09-27 13:46           ` David Kastrup
2007-10-02  4:16       ` Jeff King
2007-10-02  5:01         ` Junio C Hamano
2007-10-02  5:08           ` Jeff King
2007-10-02  5:13             ` Jeff King
2007-10-02  6:10               ` David Kastrup
2007-10-02 16:11                 ` Jeff King
2007-10-02 16:31                   ` David Kastrup
2007-10-02 17:39                     ` Jeff King
2007-10-02 18:44                       ` David Kastrup
2007-10-03  2:28                     ` Linus Torvalds
2007-10-03  6:54                       ` Jeff King
2007-10-03 16:13                         ` Linus Torvalds
2007-10-03  8:20                       ` David Kastrup
2007-10-03 16:59                         ` Jeff King
2007-10-03 17:53                           ` Linus Torvalds
2007-10-03 18:09                             ` David Kastrup
2007-10-04  7:10                       ` Junio C Hamano
2007-09-28  3:24     ` Daniel Barkalow
2007-10-02  5:53     ` Junio C Hamano
2007-10-02  6:41       ` Steven Grimm
2007-10-02  6:44       ` Steffen Prohaska
2007-10-02  7:03         ` Matthieu Moy
2007-10-02  7:21           ` Junio C Hamano
2007-10-02  8:01             ` David Kågedal
2007-10-02  8:07             ` Matthieu Moy
2007-10-02 17:44               ` Junio C Hamano
2007-10-02 12:52       ` Johannes Schindelin
2007-10-02 17:00       ` Daniel Barkalow
2007-08-11  9:43 Junio C Hamano
2007-08-11 13:49 ` Jakub Narebski
2007-05-13 22:29 Junio C Hamano
2007-05-13 22:58 ` Julian Phillips
2007-05-13 23:33   ` Junio C Hamano
2007-05-14  0:38     ` Julian Phillips
2007-05-14  3:21       ` Daniel Barkalow
2007-05-17  0:21 ` Junio C Hamano
2007-05-17  2:07   ` Daniel Barkalow
2007-05-17  4:13     ` Junio C Hamano
2007-05-17  4:31       ` Daniel Barkalow
2007-05-19  5:48   ` Junio C Hamano
2007-05-23 21:46     ` Junio C Hamano
2007-05-24  6:15       ` Shawn O. Pearce
2007-05-29 10:11       ` Junio C Hamano
2007-06-02 21:09         ` Junio C Hamano
2007-06-03  0:20           ` Johannes Schindelin
2007-06-03  1:10           ` Shawn O. Pearce
2007-06-03 21:06           ` Nicolas Pitre
2007-06-03 21:20             ` Dana How
2007-06-07  2:07           ` Junio C Hamano
2007-06-13 20:29             ` Junio C Hamano
2007-06-13 22:44               ` Johannes Schindelin
2007-06-14  3:18                 ` Linus Torvalds
2007-06-18 17:20               ` Matthias Lederhofer
2007-06-21  7:20               ` Junio C Hamano
2007-06-21 17:16                 ` Linus Torvalds
2007-06-21 17:44                   ` Linus Torvalds
2007-06-25  9:43                 ` Junio C Hamano
2007-06-25 15:47                   ` Jeffrey C. Ollie
2007-06-26 13:35                   ` Matthias Lederhofer
2007-06-27  2:14                     ` Junio C Hamano
2007-06-28 20:23                       ` Matthias Lederhofer
2007-06-29  0:02                         ` Junio C Hamano
2007-07-02  0:16                   ` Junio C Hamano
2007-07-28  8:47                     ` Junio C Hamano
2007-05-09  8:47 Junio C Hamano
2007-04-09  8:17 Junio C Hamano
2007-04-16  1:53 ` Junio C Hamano
2007-04-19  0:04   ` Junio C Hamano
2007-04-19  0:23     ` Alex Riesen
2007-04-19  2:39     ` Nicolas Pitre
2007-04-19 10:07     ` Martin Waitz
2007-04-20 11:14       ` Junio C Hamano
2007-04-20 11:58         ` Alex Riesen
2007-04-20 19:31         ` Sam Ravnborg
2007-04-21  6:09           ` Martin Waitz
2007-04-21  7:11             ` Linus Torvalds
2007-04-22  6:24     ` Junio C Hamano
2007-04-23  7:04       ` Junio C Hamano
2007-04-23 16:16         ` Nicolas Pitre
2007-04-23 17:07         ` Alex Riesen
2007-04-23 17:15           ` Junio C Hamano
2007-04-23 21:16             ` Alex Riesen
2007-04-23 21:51               ` Junio C Hamano
2007-04-24 15:58                 ` Alex Riesen
2007-04-24 16:04                   ` Johannes Schindelin
2007-04-24 16:14                     ` Alex Riesen
2007-04-24 16:44                       ` Johannes Schindelin
2007-04-24 21:41                   ` Junio C Hamano
2007-04-25  8:11                     ` Alex Riesen
2007-04-23 17:25           ` Johannes Schindelin
2007-04-27  8:24         ` Junio C Hamano
2007-04-29 18:33           ` Junio C Hamano
2007-04-29 18:45             ` Linus Torvalds
2007-04-30 23:20               ` Junio C Hamano
2007-05-06  8:53             ` Junio C Hamano
2007-04-03  5:41 Junio C Hamano
2007-04-05  7:03 ` Junio C Hamano
2007-03-29  1:12 Junio C Hamano
2007-02-20  7:42 Junio C Hamano
2007-02-20  8:20 ` Eric Wong
2007-02-20  8:35   ` Junio C Hamano
2007-02-20  8:30 ` Alexander Litvinov
2007-02-23  8:51 ` Junio C Hamano
2007-02-23 14:48   ` Johannes Schindelin
2007-02-23 18:12     ` Junio C Hamano
2007-03-04 10:32   ` Junio C Hamano
2007-03-04 12:32     ` Johannes Schindelin
2007-03-04 22:26       ` Linus Torvalds
2007-03-04 23:07         ` Junio C Hamano
2007-03-04 12:40     ` Marco Costalba
2007-03-13  8:49     ` Junio C Hamano
2007-03-13 17:43       ` Matthias Lederhofer
2007-03-13 19:48         ` Junio C Hamano
2007-03-13 20:30           ` Matthias Lederhofer
2007-03-13 18:49       ` Julian Phillips
2007-03-13 19:43       ` Junio C Hamano
2007-03-13 23:14         ` Santi Béjar
2007-03-14 11:27           ` Junio C Hamano
2007-03-14 11:47             ` Santi Béjar
2007-03-25  8:46       ` Junio C Hamano
2007-03-25  9:59         ` Johannes Schindelin
2007-03-25 22:20           ` Junio C Hamano
2007-03-25 22:25             ` Johannes Schindelin
2007-03-26  6:40         ` Florian Weimer
2007-03-26  8:11           ` Junio C Hamano
2007-02-14 23:59 Junio C Hamano
2007-02-04  9:35 Junio C Hamano
2007-01-27  8:29 Junio C Hamano
2007-01-27 19:23 ` Nicolas Pitre
2007-01-27 22:00   ` Junio C Hamano
2007-01-28  2:51     ` Nicolas Pitre
2007-01-28  8:29       ` Junio C Hamano
2007-01-29  4:41       ` Nicolas Pitre
2007-01-12  2:43 Junio C Hamano
2007-01-10  8:23 Junio C Hamano
2007-01-11  0:48 ` Junio C Hamano
2007-01-11  3:50   ` Nicolas Pitre
2007-01-11  8:00     ` Shawn O. Pearce
2007-01-11  9:20       ` Andreas Ericsson
2007-01-11 14:59         ` Nicolas Pitre
2007-01-11 16:00           ` Andreas Ericsson
2007-01-12  0:49             ` Shawn O. Pearce
2007-01-12  6:15               ` Junio C Hamano
2007-01-12  6:26                 ` Shawn O. Pearce
2007-01-11  9:38       ` Junio C Hamano
2007-01-11 10:08         ` Shawn O. Pearce
2007-01-11 23:55           ` Junio C Hamano
2007-01-12  1:01             ` Shawn O. Pearce
2007-01-12 18:16           ` Jakub Narebski
2007-01-11  8:53   ` Johannes Schindelin
2007-01-11  9:47     ` Junio C Hamano
2007-01-11 10:04       ` Johannes Schindelin
2007-01-02  0:07 Junio C Hamano
2007-01-02 20:29 ` Johannes Schindelin
2007-01-04 18:22 ` Alex Riesen
2007-01-05  2:59   ` Shawn O. Pearce
2007-01-05  9:37     ` Alex Riesen
2007-01-07  7:44 ` Junio C Hamano
2006-12-31  8:07 Junio C Hamano
2006-12-31 13:38 ` Juergen Ruehle
2006-12-31 15:04 ` Johannes Schindelin
2007-01-01 21:18 ` Shawn O. Pearce
2006-12-29  5:44 Junio C Hamano
2006-12-29 17:55 ` Johannes Schindelin
2006-12-29 18:06   ` Jakub Narebski
2006-12-29 18:25   ` Junio C Hamano
2006-12-30  3:21   ` Nicolas Pitre
2006-12-30 11:22     ` Johannes Schindelin
2006-12-30 12:24       ` Raimund Bauer
2006-12-30 12:54         ` Johannes Schindelin
2006-12-26  3:25 Junio C Hamano
2006-12-26  4:21 ` Shawn Pearce
2006-12-26  4:59   ` Shawn Pearce
2006-12-26 11:20 ` Jakub Narebski
2006-12-26 19:52   ` Junio C Hamano
2006-12-22  9:37 Junio C Hamano
2006-12-22 11:11 ` Andy Parkins
2006-12-22 23:40   ` Junio C Hamano
2006-12-22 23:53     ` Johannes Schindelin
2006-12-23  0:12     ` Josef Weidendorfer
2006-12-23 16:38       ` Andy Parkins
2006-12-20 21:21 Junio C Hamano
2006-12-20 23:51 ` Eric Wong
2006-12-18  7:28 Junio C Hamano
2006-12-16 23:10 Junio C Hamano
2006-12-16 23:29 ` Jakub Narebski
2006-12-17  0:19   ` Junio C Hamano
2006-12-17 17:35   ` Yann Dirson
2006-12-17 23:38     ` Josef Weidendorfer
2006-12-17  4:35 ` Brian Gernhardt
2006-12-17  4:42   ` Shawn Pearce
2006-12-17 23:41 ` Andy Parkins
2006-12-18  8:09   ` Junio C Hamano
2006-12-18  9:17     ` Andy Parkins
2006-12-18  9:33       ` Shawn Pearce
2006-12-06 21:19 Junio C Hamano
2006-12-06 21:51 ` Jakub Narebski
2006-12-06 22:14   ` Junio C Hamano
2006-12-06 23:42 ` Johannes Schindelin
2006-12-07  9:03   ` Alexandre Julliard
2006-12-07 17:49   ` Andy Parkins

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=7vod5kd3im.fsf@gitster.siamese.dyndns.org \
    --to=gitster@pobox.com \
    --cc=git@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).