1. 18 11月, 2010 23 次提交
  2. 17 11月, 2010 3 次提交
  3. 16 11月, 2010 1 次提交
  4. 15 11月, 2010 2 次提交
  5. 12 11月, 2010 1 次提交
  6. 11 11月, 2010 1 次提交
  7. 10 11月, 2010 2 次提交
    • J
      Merge branch 'maint' · 6f10c410
      Junio C Hamano 提交于
      * maint:
        Documentation: document show -s
        dir.c: fix EXC_FLAG_MUSTBEDIR match in sparse checkout
      6f10c410
    • J
      Documentation: document show -s · 60aa9cf8
      Jonathan Nieder 提交于
      Git's diff machinery has supported a -s (silence diff output) option
      as far back as v0.99~900 (Silent flag for show-diff, 2005-04-13), but
      the option is only advertised in an odd corner of the git diff-tree
      manual.
      
      The main use is to retrieve basic metadata about a commit:
      
      	git show -s rev
      
      Explain this in the 'git log' manual and provide an example in the
      'git show' examples section.  This is kind of a cop-out, since it
      would be more useful to explain it in the 'git show' manual proper,
      which says:
      
      	The command takes options applicable to the git
      	diff-tree command to control how the changes the
      	commit introduces are shown.
      
      	This manual page describes only the most frequently
      	used options.
      
      Fixing that is a larger task for another day.
      Reported-by: NWill Hall <will@gnatter.net>
      Signed-off-by: NJonathan Nieder <jrnieder@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      60aa9cf8
  8. 09 11月, 2010 1 次提交
  9. 06 11月, 2010 3 次提交
    • J
      Merge branch 'aw/git-p4-deletion' · 3089c2b9
      Junio C Hamano 提交于
      * aw/git-p4-deletion:
        Fix handling of git-p4 on deleted files
      3089c2b9
    • J
      Merge branch 'master' of git://repo.or.cz/git-gui · 06cfa8a8
      Junio C Hamano 提交于
      * 'master' of git://repo.or.cz/git-gui:
        git-gui: apply color information from git diff output
        git-gui: use wordprocessor tab style to ensure tabs work as expected
        git-gui: correct assignment of work-tree
        git-gui: use full dialog width for old name when renaming branch
        git-gui: generic version trimming
        git-gui: enable the Tk console when tracing/debugging on Windows
        git-gui: show command-line errors in a messagebox on Windows
        On Windows, avoid git-gui to call Cygwin's nice utility
      06cfa8a8
    • J
      Merge branch 'maint' · 31731b0e
      Junio C Hamano 提交于
      * maint:
        Fix a formatting error in git-merge.txt
      31731b0e
  10. 04 11月, 2010 1 次提交
  11. 30 10月, 2010 2 次提交
    • J
      apply: don't segfault on binary files with missing data · 24305cd7
      Jeff King 提交于
      Usually when applying a binary diff generated without
      --binary, it will be rejected early, as we don't even have
      the full sha1 of the pre- and post-images.
      
      However, if the diff is generated with --full-index (but not
      --binary), then we will actually try to apply it. If we have
      the postimage blob, then we can take a shortcut and never
      even look at the binary diff at all (e.g., this can happen
      when rebasing changes within a repository).
      
      If we don't have the postimage blob, though, we try to look
      at the actual fragments, of which there are none, and get a
      segfault. This patch checks explicitly for that case and
      complains to the user instead of segfaulting. We need to
      keep the check at a low level so that the "shortcut" case
      above continues to work.
      
      We also add a test that demonstrates the segfault. While
      we're at it, let's also explicitly test the shortcut case.
      Reported-by: NRafaël Carré <rafael.carre@gmail.com>
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      24305cd7
    • T
      t0003: properly quote $HOME · e806c435
      Thomas Rast 提交于
      6df42ab9 (Add global and system-wide gitattributes, 2010-09-01) forgot
      to quote one instance of $HOME in the tests.  This would be valid
      according to POSIX, but bash 4 helpfully declines to execute the
      command in question with an "ambiguous redirection" error.
      Signed-off-by: NThomas Rast <trast@student.ethz.ch>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      e806c435