1. 29 4月, 2005 7 次提交
  2. 28 4月, 2005 17 次提交
  3. 27 4月, 2005 11 次提交
  4. 26 4月, 2005 5 次提交
    • J
      [PATCH] Introduce diff-tree-helper. · d1df5743
      Junio C Hamano 提交于
      This patch introduces a new program, diff-tree-helper.  It reads
      output from diff-cache and diff-tree, and produces a patch file.
      The diff format customization can be done the same way the
      show-diff uses; the same external diff interface introduced by
      the previous patch to drive diff from show-diff is used so this
      is not surprising.
      
      It is used like the following examples:
      
         $ diff-cache --cached -z <tree> | diff-tree-helper -z -R paths...
         $ diff-tree -r -z <tree1> <tree2> | diff-tree-helper -z paths...
      
       - As usual, the use of the -z flag is recommended in the script
         to pass NUL-terminated filenames through the pipe between
         commands.
      
       - The -R flag is used to generate reverse diff.  It does not
         matter for diff-tree case, but it is sometimes useful to get
         a patch in the desired direction out of diff-cache.
      
       - The paths parameters are used to restrict the paths that
         appears in the output.  Again this is useful to use with
         diff-cache, which, unlike diff-tree, does not take such paths
         restriction parameters.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      d1df5743
    • J
      [PATCH] Split external diff command interface to a separate file. · 86436c28
      Junio C Hamano 提交于
      With this patch, the non-core'ish part of show-diff command that
      invokes an external "diff" comand to obtain patches is split
      into a separate file.  The next patch will introduce a new
      command, diff-tree-helper, which uses this common diff interface
      to format diff-tree and diff-cache output into a patch form.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      86436c28
    • L
      fsck-cache: show root objects only with "--root" · ab7df187
      Linus Torvalds 提交于
      This makes the default fsck behaviour be quiet for a repository
      that doesn't have any problems. Which is good.
      ab7df187
    • L
      fsck-cache: only show tags if asked to do so with "--tags" · 889262ea
      Linus Torvalds 提交于
      Normally we don't care, we just check them for being valid tag
      objects.
      889262ea
    • L
      Add the git-*-script files to the install · cd2fb81d
      Linus Torvalds 提交于
      cd2fb81d