1. 19 4月, 2006 1 次提交
  2. 10 3月, 2006 1 次提交
  3. 25 1月, 2006 2 次提交
  4. 15 1月, 2006 1 次提交
    • J
      clone: --naked option. · 8a1a120c
      Junio C Hamano 提交于
      The new option --naked is to help creating a naked repository
      for public consumption.
      
      	$ git clone -l -s --naked \
      	  /pub/scm/.../torvalds/linux-2.6.git subproj-2.6.git
      
      is equivalent to this sequence:
      
      	$ git clone -l -s -n /pub/scm/.../torvalds/linux-2.6.git temp
      	$ mv temp/.git subproj-2.6.git
      	$ rmdir temp
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      8a1a120c
  5. 06 1月, 2006 1 次提交
  6. 23 12月, 2005 1 次提交
  7. 13 12月, 2005 1 次提交
  8. 11 11月, 2005 1 次提交
  9. 07 11月, 2005 1 次提交
    • J
      Set up remotes/origin to track all remote branches. · 95d117b6
      Junio C Hamano 提交于
      This implements the idea Daniel Barkalow came up with, to match
      the remotes/origin created by clone by default to the workflow I
      use myself in my guinea pig repository, to have me eat my own
      dog food.
      
      We probably would want to use either .git/refs/local/heads/*
      (idea by Linus) or .git/refs/heads/origin/* instead to reduce
      the local ref namespace pollution.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      95d117b6
  10. 06 11月, 2005 1 次提交
  11. 11 10月, 2005 2 次提交
  12. 03 10月, 2005 1 次提交
  13. 21 9月, 2005 1 次提交
  14. 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
  15. 14 7月, 2005 1 次提交