1. 01 1月, 2007 1 次提交
  2. 17 12月, 2006 1 次提交
    • J
      git-clone: lose the traditional 'no-separate-remote' layout · 63085fab
      Junio C Hamano 提交于
      Finally.
      
      The separate-remote layout is so much more organized than
      traditional and easier to work with especially when you need to
      deal with remote repositories with multiple branches and/or you
      need to deal with more than one remote repositories, and using
      traditional layout for new repositories simply does not make
      much sense.
      
      Internally we still have code for 1:1 mappings to create a bare
      clone; that is a good thing and will not go away.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      63085fab
  3. 16 12月, 2006 1 次提交
  4. 08 12月, 2006 1 次提交
  5. 05 12月, 2006 1 次提交
  6. 24 11月, 2006 1 次提交
  7. 03 11月, 2006 1 次提交
  8. 21 6月, 2006 1 次提交
  9. 10 6月, 2006 1 次提交
  10. 08 6月, 2006 1 次提交
  11. 29 5月, 2006 1 次提交
  12. 06 5月, 2006 1 次提交
    • S
      Several trivial documentation touch ups. · 2b5f3ed3
      sean 提交于
        Move incorrect asciidoc level 2 titles back to level 1.
      
        Show output of git-name-rev in man page example.
      
        Reword sentences that begin with a period (.) in asciidoc
        numbered lists to work around conversion to man page bug.
      
        Mention that git-repack now calls git-prune-packed
        when the -d option is passed to it.
      
        [imap] section headers in the config file example need to be
        contained in a literal block.  imap.pass is the proper config
        file variable to use, not imap.password.
      Signed-off-by: NSean Estabrooks <seanlkml@sympatico.ca>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      2b5f3ed3
  13. 19 4月, 2006 1 次提交
  14. 10 3月, 2006 1 次提交
  15. 25 1月, 2006 2 次提交
  16. 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
  17. 06 1月, 2006 1 次提交
  18. 23 12月, 2005 1 次提交
  19. 13 12月, 2005 1 次提交
  20. 11 11月, 2005 1 次提交
  21. 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
  22. 06 11月, 2005 1 次提交
  23. 11 10月, 2005 2 次提交
  24. 03 10月, 2005 1 次提交
  25. 21 9月, 2005 1 次提交
  26. 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
  27. 14 7月, 2005 1 次提交