1. 27 10月, 2006 1 次提交
    • R
      Make git-cherry handle root trees · 2b60356d
      Rene Scharfe 提交于
      This patch on top of 'next' makes built-in git-cherry handle root
      commits.
      
      It moves the static function log-tree.c::diff_root_tree() to
      tree-diff.c and makes it more similar to diff_tree_sha1() by
      shuffling around arguments and factoring out the call to
      log_tree_diff_flush().  Consequently the name is changed to
      diff_root_tree_sha1().  It is a version of diff_tree_sha1() that
      compares the empty tree (= root tree) against a single 'real' tree.
      
      This function is then used in get_patch_id() to compute patch IDs
      for initial commits instead of SEGFAULTing, as the current code
      does if confronted with parentless commits.
      Signed-off-by: NRene Scharfe <rene.scharfe@lsrfire.ath.cx>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      2b60356d
  2. 24 10月, 2006 8 次提交
  3. 23 10月, 2006 14 次提交
  4. 21 10月, 2006 5 次提交
  5. 20 10月, 2006 2 次提交
  6. 19 10月, 2006 10 次提交
    • J
      Don't use $author_name undefined when $from contains no /\s</. · 7768e27e
      Jim Meyering 提交于
      I noticed a case not handled in a recent patch.
      Demonstrate it like this:
      
        $ touch new-file
        $ git-send-email --dry-run --from j --to k new-file 2>err
        new-file
        OK. Log says:
        Date: Thu, 19 Oct 2006 10:26:24 +0200
        Sendmail: /usr/sbin/sendmail
        From: j
        Subject:
        Cc:
        To: k
      
        Result: OK
        $ cat err
        Use of uninitialized value in pattern match (m//) at /p/bin/git-send-email line 416.
        Use of uninitialized value in concatenation (.) or string at /p/bin/git-send-email line 420.
        Use of uninitialized value in concatenation (.) or string at /p/bin/git-send-email line 468.
      
      There's a patch for the $author_name part below.
      
      The example above shows that $subject may also be used uninitialized.
      That should be easy to fix, too.
      Signed-off-by: NJim Meyering <jim@meyering.net>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      7768e27e
    • J
      Merge branch 'mw/pathinfo' · 72bbc38b
      Junio C Hamano 提交于
      * mw/pathinfo:
        gitweb: Fix search form when PATH_INFO is enabled
        gitweb: Document features better
        gitweb: warn if feature cannot be overridden.
        gitweb: start to generate PATH_INFO URLs.
      
      Conflicts:
      
      	gitweb/README
      72bbc38b
    • J
      Merge branch 'js/diff' · 65606f35
      Junio C Hamano 提交于
      * js/diff:
        Turn on recursive with --summary
      65606f35
    • J
      Merge branch 'jc/send-email' · 2dcd3ce8
      Junio C Hamano 提交于
      * jc/send-email:
        Make git-send-email detect mbox-style patches more readily
        git-send-email: real name with period need to be dq-quoted on From: line
        git-send-email: do not drop custom headers the user prepared
      2dcd3ce8
    • J
      Merge branch 'jc/grep' · 9100c9dc
      Junio C Hamano 提交于
      * jc/grep:
        teach revision walker about --all-match.
        grep --all-match
      9100c9dc
    • J
      Merge early part of branch 'jc/diff-apply-patch' · 17250ac1
      Junio C Hamano 提交于
      17250ac1
    • J
      Merge branch 'jc/diff-numstat' · f73a5e89
      Junio C Hamano 提交于
      * jc/diff-numstat:
        diff --numstat
      f73a5e89
    • J
      Merge branch 'pb/bisect' · 8719f93b
      Junio C Hamano 提交于
      * pb/bisect:
        bisect reset: Leave the tree in usable state if git-checkout failed
      8719f93b
    • J
      Merge branch 'mw/send-email' · 32788ad6
      Junio C Hamano 提交于
      * mw/send-email:
        Add --dry-run option to git-send-email
      32788ad6
    • J
      Merge branch 'rs/rebase' · a420585f
      Junio C Hamano 提交于
      * rs/rebase:
        git-rebase: Add a -v option to show a diffstat of the changes upstream at the start of a rebase.
        git-rebase: Use --ignore-if-in-upstream option when executing git-format-patch.
      a420585f