1. 17 8月, 2009 1 次提交
    • J
      docs: describe impact of repack on "clone -s" · 13354f53
      Jeff King 提交于
      The effects of repacking on a repository with alternates are a bit
      subtle. The two main things users will want are:
      
        1. Not to waste disk space by accidentally copying objects which could
           be shared.
      
        2. Copying all objects explicitly to break the dependency on the source
           repo.
      
      This patch describes both under the "clone -s" documentation. It makes
      sense to put it there rather than in git-repack.txt for both cases.
      
      For (1), we are warning the user who is using "clone -s" about what _not_
      to do, so we need to get their attention when reading about "clone -s".
      
      For (2), we are telling them how git-repack can be used to accomplish a
      task, but until they know that git-repack is the right tool, they have no
      reason to look at the repack documentation.
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      13354f53
  2. 13 8月, 2009 6 次提交
  3. 11 8月, 2009 2 次提交
  4. 10 8月, 2009 1 次提交
  5. 08 8月, 2009 6 次提交
  6. 06 8月, 2009 4 次提交
  7. 05 8月, 2009 2 次提交
  8. 31 7月, 2009 1 次提交
  9. 29 7月, 2009 7 次提交
  10. 27 7月, 2009 4 次提交
  11. 26 7月, 2009 5 次提交
  12. 25 7月, 2009 1 次提交
    • E
      git svn: avoid escaping '/' when renaming/copying files · 884cce5b
      Eric Wong 提交于
      Timothy Schaeffer reported the following:
      > Git-svn has been giving me the following error for some time
      > when calling "git svn dcommit":
      >
      > RA layer request failed: PROPFIND request failed on
      > '/svn/stf/branches/dev/sw%2Fdpemu%2Finclude%2FNetCnxn.h': PROPFIND of
      > '/svn/stf/branches/dev/sw%2Fdpemu%2Finclude%2FNetCnxn.h': 302 Found
      > (https://oursvnrepo.net) at /usr/local/libexec/git-core/git-svn line 508
      >
      > This only occurred when git detected a rename or copy.
      >
      > Following the lead into git-svn.perl,
      > and noticing that some of the '/'s in the path were hex-encoded
      > and some were not,
      > I changed the regex used to find chars
      > to hex-encode in the relative part of the path
      > to exclude '/'.
      > It works, so far.
      > I have included a patch.
      
      While this has previous not been a problem in my experience,
      newer versions of SVN may be stricter and this does not
      introduce regressions in t9115.
      Signed-off-by: NEric Wong <normalperson@yhbt.net>
      884cce5b