1. 20 5月, 2006 1 次提交
  2. 29 11月, 2005 1 次提交
  3. 30 10月, 2005 2 次提交
  4. 11 10月, 2005 1 次提交
  5. 27 9月, 2005 1 次提交
  6. 24 9月, 2005 4 次提交
  7. 08 9月, 2005 1 次提交
    • J
      Big tool rename. · 215a7ad1
      Junio C Hamano 提交于
      As promised, this is the "big tool rename" patch.  The primary differences
      since 0.99.6 are:
      
        (1) git-*-script are no more.  The commands installed do not
            have any such suffix so users do not have to remember if
            something is implemented as a shell script or not.
      
        (2) Many command names with 'cache' in them are renamed with
            'index' if that is what they mean.
      
      There are backward compatibility symblic links so that you and
      Porcelains can keep using the old names, but the backward
      compatibility support  is expected to be removed in the near
      future.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      215a7ad1
  8. 05 9月, 2005 1 次提交
  9. 17 8月, 2005 2 次提交
  10. 03 8月, 2005 1 次提交
  11. 30 7月, 2005 2 次提交
  12. 28 6月, 2005 1 次提交
  13. 23 6月, 2005 1 次提交
  14. 07 6月, 2005 1 次提交
  15. 06 6月, 2005 1 次提交
    • J
      [PATCH] pull: gracefully recover from delta retrieval failure. · a48e1d67
      Junio C Hamano 提交于
      This addresses a concern raised by Jason McMullan in the mailing
      list discussion.  After retrieving and storing a potentially
      deltified object, pull logic tries to check and fulfil its delta
      dependency.  When the pull procedure is killed at this point,
      however, there was no easy way to recover by re-running pull,
      since next run would have found that we already have that
      deltified object and happily reported success, without really
      checking its delta dependency is satisfied.
      
      This patch introduces --recover option to git-*-pull family
      which causes them to re-validate dependency of deltified objects
      we are fetching.  A new test t5100-delta-pull.sh covers such a
      failure mode.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      a48e1d67
  16. 03 6月, 2005 1 次提交
    • J
      [PATCH] Handle deltified object correctly in git-*-pull family. · 4a62b619
      Junio C Hamano 提交于
      When a remote repository is deltified, we need to get the
      objects that a deltified object we want to obtain is based upon.
      The initial parts of each retrieved SHA1 file is inflated and
      inspected to see if it is deltified, and its base object is
      asked from the remote side when it is.  Since this partial
      inflation and inspection has a small performance hit, it can
      optionally be skipped by giving -d flag to git-*-pull commands.
      This flag should be used only when the remote repository is
      known to have no deltified objects.
      
      Rsync transport does not have this problem since it fetches
      everything the remote side has.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      4a62b619
  17. 23 5月, 2005 1 次提交
    • L
      Include file cleanups.. · 6b0c3121
      Linus Torvalds 提交于
      Add <limits.h> to the include files handled by "cache.h", and remove
      extraneous #include directives from various .c files. The rule is that
      "cache.h" gets all the basic stuff, so that we'll have as few system
      dependencies as possible.
      6b0c3121
  18. 10 5月, 2005 1 次提交
  19. 08 5月, 2005 1 次提交
  20. 06 5月, 2005 1 次提交
  21. 04 5月, 2005 1 次提交
  22. 02 5月, 2005 2 次提交