1. 20 8月, 2005 4 次提交
    • J
      [PATCH] Allow file removal when "git commit --all" is used. · e20ce6ac
      Junio C Hamano 提交于
      After you deleted files from your working tree, automatic
      git-update-cache used when the "--all" flag is given to "git
      commit" barfs because it lacks the --remove flag.
      
      It can be argued that this is a feature; people should be
      careful and something with a grave consequence like removing
      files should be done manually, in which case the current
      behaviour may be OK.
      
      The patch is for people who thinks the user who uses the "--all"
      flag deserves the danger that comes with the convenience.
      
      Comments?
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      e20ce6ac
    • J
      Merge from gitk · b30245c8
      Junio C Hamano 提交于
      b30245c8
    • S
      [PATCH] git-rev-list: avoid crash on broken repository · 7f1335c7
      Sergey Vlasov 提交于
      When following tags, check for parse_object() success and error out
      properly instead of segfaulting.
      Signed-off-by: NSergey Vlasov <vsu@altlinux.ru>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      7f1335c7
    • M
      [PATCH] Fix git-format-patch-script to handle empty messages · cc5625a5
      Marco Costalba 提交于
      In case of a commit with an empty message there is no
      mandatory empty line between headers and body
      
      [jc: This makes --mbox output valid even when the commit message does
      not have anything but its first line, which the one I wrote botched.
      One side-effect is that it adds an extra blank line at the end even if
      it has more than one lines, which will be eaten by the receiving end.
      As Marco says, this is a stop-gap measure.  This script needs to be
      split into two, one that gets the format specifier and a commit ID to
      write to its standard output, and another that drives that one reading
      from rev-list.  I'll fix things properly when that happens by
      rewriting the former part in Perl or something more reasonable than
      the current shell, sed and grep mishmash.]
      Signed-off-by: NMarco Costalba <mcostalba@yahoo.it>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      cc5625a5
  2. 19 8月, 2005 14 次提交
  3. 18 8月, 2005 21 次提交
  4. 17 8月, 2005 1 次提交
    • P
      Add graft support. · 244edd12
      Paul Mackerras 提交于
      We read .git/info/grafts and use the information in there to
      override the list of parents we get from git-rev-list or
      git-cat-file.
      244edd12