1. 29 1月, 2007 1 次提交
  2. 04 6月, 2006 1 次提交
  3. 10 3月, 2006 1 次提交
    • J
      fsck-objects: Remove --standalone · 7aaa715d
      Junio C Hamano 提交于
      The fsck-objects command (back then it was called fsck-cache)
      used to complain if objects referred to by files in .git/refs/
      or objects stored in files under .git/objects/??/ were not found
      as stand-alone SHA1 files (i.e.  found in alternate object pools
      or packed archives stored under .git/objects/pack).  Back then,
      packs and alternates were new curiosity and having everything as
      loose objects were the norm.
      
      When we adjusted the behaviour of fsck-cache to consider objects
      found in packs are OK, we introduced the --standalone flag as a
      backward compatibility measure.
      
      It still correctly checks if your repository is complete and
      consists only of loose objects, so in that sense it is doing the
      "right" thing, but checking that is pointless these days.  This
      commit removes --standalone flag.
      
      See also:
      
      	23676d40
      	8a498a05Signed-off-by: NJunio C Hamano <junkio@cox.net>
      7aaa715d
  4. 06 1月, 2006 1 次提交
  5. 17 11月, 2005 1 次提交
  6. 15 11月, 2005 1 次提交
  7. 12 11月, 2005 1 次提交
  8. 11 10月, 2005 2 次提交
  9. 04 10月, 2005 1 次提交
    • J
      [PATCH] Random documentation fixes · df8baa42
      Jonas Fonseca 提交于
      The fixes focuses on improving the HTML output. Most noteworthy:
      
       - Fix the Makefile to also make various *.html files depend on
         included files.
      
       - Consistently use 'NOTE: ...' instead of '[ ... ]' for additional
         info.
      
       - Fix ending '::' for description lists in OPTION section etc.
      
       - Fix paragraphs in description lists ending up as preformated text.
      
       - Always use listingblocks (preformatted text wrapped in lines with -----)
         for examples that span empty lines, so they are put in only one HTML
         block.
      
       - Use '1.' instead of '(1)' for numbered lists.
      
       - Fix linking to other GIT docs.
      
       - git-rev-list.txt: put option descriptions in an OPTION section.
      Signed-off-by: NJonas Fonseca <fonseca@diku.dk>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      df8baa42
  10. 21 9月, 2005 1 次提交
  11. 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
  12. 06 8月, 2005 1 次提交
  13. 28 7月, 2005 1 次提交
  14. 29 6月, 2005 1 次提交
    • J
      [PATCH] Update fsck-cache (take 2) · 8a498a05
      Junio C Hamano 提交于
      The fsck-cache complains if objects referred to by files in .git/refs/
      or objects stored in files under .git/objects/??/ are not found as
      stand-alone SHA1 files (i.e.  found in alternate object pools
      GIT_ALTERNATE_OBJECT_DIRECTORIES or packed archives stored under
      .git/objects/pack).
      
      Although this is a good semantics to maintain consistency of a single
      .git/objects directory as a self contained set of objects, it sometimes
      is useful to consider it is OK as long as these "outside" objects are
      available.
      
      This commit introduces a new flag, --standalone, to git-fsck-cache.
      When it is not specified, connectivity checks and .git/refs pointer
      checks are taught that it is OK when expected objects do not exist under
      .git/objects/?? hierarchy but are available from an packed archive or in
      an alternate object pool.
      
      Another new flag, --full, makes git-fsck-cache to check not only the
      current GIT_OBJECT_DIRECTORY but also objects found in alternate object
      pools and packed GIT archives.a
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      8a498a05
  15. 28 6月, 2005 1 次提交
  16. 23 5月, 2005 2 次提交
  17. 11 5月, 2005 1 次提交