1. 11 8月, 2008 4 次提交
  2. 08 8月, 2008 5 次提交
    • J
      asciidoc markup fixes · 0f4f4d15
      Junio C Hamano 提交于
      I see quite a few pages on k.org site, e.g.
      
          http://www.kernel.org/pub/software/scm/git/docs/git-rerere.html
          (scroll down to find "After this test merge")
      
      are misformatted to lose teletype text '+' that is followed by a comma,
      and turns the following paragraph all typeset in teletype.
      
      This patch seems to fix the issue at the site (meaning, with the
      particular vintage of asciidoc and docbook toolchain), without breaking
      things with the version I have at my primary development machine, but
      wider testing is very much appreciated.
      
      After this patch,
      
          git grep '`+`,' -- Documentation
      
      should report noting.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      0f4f4d15
    • J
      Merge branch 'lt/config-fsync' into maint · e19b92be
      Junio C Hamano 提交于
      * lt/config-fsync:
        Add config option to enable 'fsync()' of object files
        Split up default "i18n" and "branch" config parsing into helper routines
        Split up default "user" config parsing into helper routine
        Split up default "core" config parsing into helper routine
      e19b92be
    • J
      Merge branch 'jc/reflog-expire' into maint · 7be94672
      Junio C Hamano 提交于
      * jc/reflog-expire:
        Make default expiration period of reflog used for stash infinite
        Per-ref reflog expiry configuration
      7be94672
    • J
      Merge branch 'ag/rewrite_one' into maint · 1e040c0b
      Junio C Hamano 提交于
      * ag/rewrite_one:
        Fix quadratic performance in rewrite_one.
      1e040c0b
    • P
      Fail properly when cloning from invalid HTTP URL · fd35e426
      Petr Baudis 提交于
      Currently, when cloning from invalid HTTP URL, git clone will possibly
      return curl error, then a confusing message about remote HEAD and then
      return success and leave an empty repository behind, confusing either
      the end-user or the automated service calling it (think repo.or.cz).
      
      This patch changes the error() calls in get_refs_via_curl() to die()s,
      akin to the other get_refs_*() functions.
      
      Cc: Daniel Barkalow <barkalow@iabervon.org>
      Signed-off-by: NPetr Baudis <pasky@suse.cz>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      fd35e426
  3. 07 8月, 2008 2 次提交
    • J
      GIT 1.5.6.5 · 781c1834
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      781c1834
    • J
      Files given on the command line are relative to $cwd · dbd0f5c7
      Junio C Hamano 提交于
      When running "git commit -F file" and "git tag -F file" from a
      subdirectory, we should take it as relative to the directory we started
      from, not relative to the top-level directory.
      
      This adds a helper function "parse_options_fix_filename()" to make it more
      convenient to fix this class of issues.  Ideally, parse_options() should
      support a new type of option, "OPT_FILENAME", to do this uniformly, but
      this patch is meant to go to 'maint' to fix it minimally.
      
      One thing to note is that value for "commit template file" that comes from
      the command line is taken as relative to $cwd just like other parameters,
      but when it comes from the configuration varilable 'commit.template', it
      is taken as relative to the working tree root as before.  I think this
      difference actually is sensible (not that I particularly think
      commit.template itself is sensible).
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      dbd0f5c7
  4. 06 8月, 2008 5 次提交
  5. 04 8月, 2008 1 次提交
  6. 03 8月, 2008 2 次提交
  7. 02 8月, 2008 13 次提交
  8. 26 7月, 2008 4 次提交
  9. 24 7月, 2008 1 次提交
  10. 21 7月, 2008 1 次提交
    • J
      fix usage string for git grep · 2d9c5725
      Jonathan Nieder 提交于
      Without this patch, git-grep gives confusing usage information:
      
      	$ git grep --confused
      	usage: git grep <option>* <rev>* [-e] <pattern> [<path>...]
      	$ git grep HEAD pattern
      	fatal: ambiguous argument 'pattern': unknown revision or path no
      	t in the working tree.
      	Use '--' to separate paths from revisions
      
      So put <pattern> before the <rev>s, in accordance with actual correct
      usage.  While we're changing the usage string, we might as well include
      the "--" separating revisions and paths, too.
      Signed-off-by: NJonathan Nieder <jrnieder@uchicago.edu>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      2d9c5725
  11. 20 7月, 2008 2 次提交