1. 19 11月, 2005 3 次提交
    • L
      Make "git fetch" less verbose by default · 583122cd
      Linus Torvalds 提交于
      When doing something like
      
      	git fetch --tags origin
      
      the excessively verbose output of git fetch makes the result totally
      unreadable. It's impossible to tell if it actually fetched anything new or
      not, since the screen will fill up with an endless supply of
      
         ...
         * committish: 9165ec17fde255a1770886189359897dbb541012
           tag 'v0.99.7c' of master.kernel.org:/pub/scm/git/git
         * refs/tags/v0.99.7c: same as tag 'v0.99.7c' of master.kernel.org:/pub/scm/git/git
         ...
      
      and any new tags that got fetched will be totally hidden.
      
      So add a new "--verbose" flag to "git fetch" to enable this verbose mode,
      but make the default be quiet.
      
      NOTE! The quiet mode will still report about new or changed heads, so if
      you are really fetching a new head, you'll see something like this:
      
         [torvalds@g5 git]$ git fetch --tags parent
         Packing 6 objects
         Unpacking 6 objects
          100% (6/6) done
         * refs/tags/v1.0rc2: storing tag 'v1.0rc2' of master.kernel.org:/pub/scm/git/git
         * refs/tags/v1.0rc3: storing tag 'v1.0rc3' of master.kernel.org:/pub/scm/git/git
         * refs/tags/v1.0rc1: storing tag 'v1.0rc1' of master.kernel.org:/pub/scm/git/git
      
      which actually tells you something useful that isn't hidden by all the
      useless crud that you already had.
      
      Extensively tested (hey, for me, this _is_ extensive) by doing a
      
         rm .git/refs/tags/v1.0rc*
      
      and re-fetching with both --verbose and without.
      
      NOTE! This means that if the fetch didn't actually fetch anything at all,
      git fetch will be totally quiet. I think that's much better than being so
      verbose that you can't even tell whether something was fetched or not, but
      some people might prefer to get a "nothing to fetch" message in that case.
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      583122cd
    • L
      Fix bug introduced by the latest changes to git-pack-redundant · 3afd1694
      Lukas Sandström 提交于
      I forgot to initialize part of the pll struct when copying it.
      Found by valgrind.
      Signed-off-by: NLukas Sandström <lukass@etek.chalmers.se>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      3afd1694
    • J
      c3e24a7d
  2. 18 11月, 2005 6 次提交
  3. 17 11月, 2005 20 次提交
  4. 16 11月, 2005 11 次提交