1. 28 12月, 2006 9 次提交
  2. 27 12月, 2006 12 次提交
  3. 26 12月, 2006 17 次提交
  4. 25 12月, 2006 2 次提交
    • J
      git-add: add ignored files when asked explicitly. · e23ca9e1
      Junio C Hamano 提交于
      One thing many people found confusing about git-add was that a
      file whose name matches an ignored pattern could not be added to
      the index.  With this, such a file can be added by explicitly
      spelling its name to git-add.
      
      Fileglobs and recursive behaviour do not add ignored files to
      the index.  That is, if a pattern '*.o' is in .gitignore, and
      two files foo.o, bar/baz.o are in the working tree:
      
          $ git add foo.o
          $ git add '*.o'
          $ git add bar
      
      Only the first form adds foo.o to the index.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      e23ca9e1
    • J
      read_directory: show_both option. · 4888c534
      Junio C Hamano 提交于
      This teaches the internal read_directory() routine to return
      both interesting and ignored pathnames.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      4888c534