1. 24 5月, 2006 3 次提交
  2. 23 5月, 2006 15 次提交
  3. 22 5月, 2006 7 次提交
  4. 21 5月, 2006 5 次提交
  5. 20 5月, 2006 10 次提交
    • J
      Merge branch 'js/fetchconfig' · 288c0384
      Junio C Hamano 提交于
      * js/fetchconfig:
        Add a conversion tool to migrate remote information into the config
        fetch, pull: ask config for remote information
      288c0384
    • J
      Fix build procedure for builtin-init-db · 7c4f59d1
      Junio C Hamano 提交于
      c3c8835f broke the default template
      location which is in builtin-init-db.o, by not supplying the
      compilation-time constant to the right build commands.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      7c4f59d1
    • J
      Merge branch 'jc/read-tree-safety' · 0081e36c
      Junio C Hamano 提交于
      * jc/read-tree-safety:
        read-tree -m -u: do not overwrite or remove untracked working tree files.
      0081e36c
    • J
      Merge branch 'jc/apply' · edd5cc24
      Junio C Hamano 提交于
      * jc/apply:
        apply --cached: do not check newly added file in the working tree
      edd5cc24
    • J
      Merge branch 'eb/quilt' · 667661d4
      Junio C Hamano 提交于
      * eb/quilt:
        Implement a --dry-run option to git-quiltimport
        Implement git-quiltimport
      667661d4
    • J
      Merge branch 'jc/grep' · 12bb2035
      Junio C Hamano 提交于
      * jc/grep:
        Revert "builtin-grep: workaround for non GNU grep."
        builtin-grep: workaround for non GNU grep.
      12bb2035
    • J
      Merge branch 'lt/grep' · 9463ed0d
      Junio C Hamano 提交于
      * lt/grep:
        builtin-grep: workaround for non GNU grep.
        git-am: use apply --cached
        apply --cached: apply a patch without using working tree.
        apply --numstat: show new name, not old name.
      9463ed0d
    • J
      Merge branch 'ts/doctar' · 3532998f
      Junio C Hamano 提交于
      * ts/doctar:
        Documentation/Makefile: create tarballs for the man pages and html files
      3532998f
    • S
      Allow pickaxe and diff-filter options to be used by git log. · 582af688
      Sean 提交于
      Handle the -S option when passed to git log such that only the
      appropriate commits are displayed.  Also per Junio's comments, do
      the same for "--diff-filter", so that it too can be used as an option
      to git log.  By default no patch or diff information is displayed.
      Signed-off-by: NSean Estabrooks <seanlkml@sympatico.ca>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      582af688
    • L
      Libify the index refresh logic · 405e5b2f
      Linus Torvalds 提交于
      This cleans up and libifies the "git update-index --[really-]refresh"
      functionality. This will be eventually required for eventually doing the
      "commit" and "status" commands as built-ins.
      
      It really just moves "refresh_index()" from update-index.c to
      read-cache.c, but it also has to change the calling convention so that the
      function uses a "unsigned int flags" argument instead of various static
      flags variables for passing down the information about whether to be quiet
      or not, and allow unmerged entries etc.
      
      That actually cleans up update-index.c too, since it turns out that all
      those flags were really specific to that one function of the index update,
      so they shouldn't have had file-scope visibility even before.
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      405e5b2f