1. 31 3月, 2007 2 次提交
    • D
      git-mailinfo fixes for patch munging · 86747c13
      Don Zickus 提交于
      Don't translate the patch to UTF-8, instead preserve the data as
      is.  This also reverts a test case that was included in the
      original patch series.
      
      Also allow overwriting the authorship and title information we
      gather from RFC2822 mail headers with additional in-body
      headers, which was pointed out by Linus.
      Signed-off-by: NDon Zickus <dzickus@redhat.com>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      86747c13
    • J
      gitweb: Support comparing blobs (files) with different names · 5ae917ac
      Jakub Narebski 提交于
      Fix the bug that caused "blobdiff" view called with new style URI
      for a rename with change diff to be show as new (added) file diff.
      
      New style URI for "blobdiff" for rename means with $hash_base ('hb') and
      $hash_parent_base ('hpb') paramaters denoting tree-ish (usually commit)
      of a blobs being compared, together with both $file_name ('f') and
      $file_parent ('fp') parameters.
      
      It is done by adding $file_parent ('fp') to the path limiter, meaning
      that diff command becomes:
      
      	git diff-tree [options] hpb hb -- fp f
      
      Other option would be finding hash of a blob using git_get_hash_by_path
      subroutine and comparing blobs using git-diff, or using extended SHA-1
      syntax and compare blobs using git-diff:
      
      	git diff [options] hpb:fp hp:f
      Signed-off-by: NJakub Narebski <jnareb@gmail.com>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      5ae917ac
  2. 30 3月, 2007 16 次提交
  3. 29 3月, 2007 13 次提交
  4. 28 3月, 2007 9 次提交