1. 13 11月, 2010 1 次提交
    • N
      add: do not rely on dtype being NULL behavior · 0188f6b3
      Nguyễn Thái Ngọc Duy 提交于
      Commit c84de707 (excluded_1(): support exclude files in index -
      2009-08-20) added support for excluded() where dtype can be NULL. It
      was designed specifically for index matching because there was no
      other way to extract dtype information from index. It did not support
      wildcard matching (for example, "a*/" pattern would fail to match).
      
      The code was probably misread when commit 108da0db (git add: Add the
      "--ignore-missing" option for the dry run - 2010-07-10) was made
      because DT_UNKNOWN happens to be zero (NULL) too.
      
      Do not pass DT_UNKNOWN/NULL to excluded(), instead pass a pointer to a
      variable that contains DT_UNKNOWN. The real dtype will be extracted
      from worktree by excluded(), as expected.
      Signed-off-by: NNguyễn Thái Ngọc Duy <pclouds@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      0188f6b3
  2. 10 11月, 2010 1 次提交
    • 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
  3. 09 11月, 2010 1 次提交
  4. 30 10月, 2010 1 次提交
  5. 25 10月, 2010 1 次提交
  6. 22 10月, 2010 3 次提交
  7. 20 10月, 2010 5 次提交
  8. 14 10月, 2010 8 次提交
  9. 09 10月, 2010 7 次提交
  10. 07 10月, 2010 7 次提交
  11. 05 10月, 2010 2 次提交
  12. 04 10月, 2010 3 次提交