1. 28 2月, 2006 1 次提交
  2. 27 2月, 2006 12 次提交
  3. 26 2月, 2006 1 次提交
  4. 25 2月, 2006 7 次提交
    • L
      fix warning from pack-objects.c · 8fcf1ad9
      Luck, Tony 提交于
      When compiling on ia64 I get this warning (from gcc 3.4.3):
      
      gcc -o pack-objects.o -c -g -O2 -Wall -DSHA1_HEADER='<openssl/sha.h>'  pack-objects.c
      pack-objects.c: In function `pack_revindex_ix':
      pack-objects.c:94: warning: cast from pointer to integer of different size
      
      A double cast (first to long, then to int) shuts gcc up, but is there
      a better way?
      
      [jc: Andreas Ericsson suggests to use ulong instead. ]
      Signed-off-by: NTony Luck <tony.luck@intel.com>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      8fcf1ad9
    • J
      Merge branches 'jc/rev-list' and 'jc/pack-thin' · f0b0af1b
      Junio C Hamano 提交于
      * jc/rev-list:
        rev-list --objects: use full pathname to help hashing.
        rev-list --objects-edge: remove duplicated edge commit output.
        rev-list --objects-edge
      
      * jc/pack-thin:
        pack-objects: hash basename and direname a bit differently.
        pack-objects: allow "thin" packs to exceed depth limits
        pack-objects: use full pathname to help hashing with "thin" pack.
        pack-objects: thin pack micro-optimization.
        Use thin pack transfer in "git fetch".
        Add git-push --thin.
        send-pack --thin: use "thin pack" delta transfer.
        Thin pack - create packfile with missing delta base.
      
      Conflicts:
      
      	pack-objects.c (taking "next")
      	send-pack.c (taking "next")
      f0b0af1b
    • A
      gitview: Fix the graph display . · 1509bd9e
      Aneesh Kumar K.V 提交于
      This fix all the known issue with the graph display
      The bug need to be explained graphically
      
                                       |
                                       a
      This line need not be there ---->| \
                                       b  |
                                       | /
                                       c
      
      c is parent of a and all a,b and c are placed on the same line and b is child of c
      With my last checkin I added  a seperate line to indicate that a is
      connected to c. But then we had the line connecting a and b which should
      not be ther. This changes fixes the same bug
      Signed-off-by: NAneesh Kumar K.V <aneesh.kumar@gmail.com>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      1509bd9e
    • A
      gitview: Code cleanup · 9e4f522d
      Aneesh Kumar K.V 提交于
      Rearrange the code little bit so that it is easier to read
      Signed-off-by: NAneesh Kumar K.V <aneesh.kumar@gmail.com>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      9e4f522d
    • S
      Add missing programs to ignore list · 6ee9240f
      Shawn Pearce 提交于
      Added recently added programs to the default exclude list.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      6ee9240f
    • S
      git ls files recursively show ignored files · 1e358405
      Shawn Pearce 提交于
      Make git-ls-files --others --ignored recurse into non-excluded
      subdirectories.
      
      Typically when asking git-ls-files to display all files which are
      ignored by one or more exclude patterns one would want it to recurse
      into subdirectories which are not themselves excluded to see if
      there are any excluded files contained within those subdirectories.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      1e358405
    • J
      Build and install git-mailinfo. · 43f72af1
      Junio C Hamano 提交于
      The merge 712b1dd3 was done
      incorrectly, and lost this program from Makefile.
      
      Big thanks go to Tony Luck for noticing it, and Linus for
      diagnosing it.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      43f72af1
  5. 24 2月, 2006 15 次提交
  6. 23 2月, 2006 4 次提交