1. 24 10月, 2013 5 次提交
    • J
      Merge branch 'po/dot-url' · f92f068e
      Junio C Hamano 提交于
      Explain how '.' can be used to refer to the "current repository"
      in the documentation.
      
      * po/dot-url:
        doc/cli: make "dot repository" an independent bullet point
        config doc: update dot-repository notes
        doc: command line interface (cli) dot-repository dwimmery
      f92f068e
    • J
      Merge branch 'jc/prompt-upstream' · 807c895f
      Junio C Hamano 提交于
      An enhancement to the GIT_PS1_SHOWUPSTREAM facility.
      
      * jc/prompt-upstream:
        git-prompt.sh: optionally show upstream branch name
      807c895f
    • J
      Merge branch 'hu/cherry-pick-previous-branch' · f2c1b01c
      Junio C Hamano 提交于
      "git cherry-pick" without further options would segfault.
      
      Could use a follow-up to handle '-' after argv[1] better.
      
      * hu/cherry-pick-previous-branch:
        cherry-pick: handle "-" after parsing options
      f2c1b01c
    • J
      Merge branch 'mg/more-textconv' · 4197361e
      Junio C Hamano 提交于
      Make "git grep" and "git show" pay attention to --textconv when
      dealing with blob objects.
      
      * mg/more-textconv:
        grep: honor --textconv for the case rev:path
        grep: allow to use textconv filters
        t7008: demonstrate behavior of grep with textconv
        cat-file: do not die on --textconv without textconv filters
        show: honor --textconv for blobs
        diff_opt: track whether flags have been set explicitly
        t4030: demonstrate behavior of show with textconv
      4197361e
    • J
      Merge branch 'jc/pack-objects' · eeb8e837
      Junio C Hamano 提交于
      * jc/pack-objects:
        pack-objects: shrink struct object_entry
      eeb8e837
  2. 19 10月, 2013 7 次提交
  3. 18 10月, 2013 20 次提交
  4. 17 10月, 2013 2 次提交
  5. 16 10月, 2013 4 次提交
  6. 15 10月, 2013 2 次提交
    • S
      mergetool--lib: Fix typo in the merge/difftool help · 2b7ca916
      Stefan Saasen 提交于
      The help text for the `tool` flag should mention:
      
          --tool=<tool>
      
      instead of:
      
          --tool-<tool>
      Signed-off-by: NStefan Saasen <ssaasen@atlassian.com>
      Reviewed-by: NDavid Aguilar <davvid@gmail.com>
      Signed-off-by: NJonathan Nieder <jrnieder@gmail.com>
      2b7ca916
    • R
      sparse: suppress some "using sizeof on a function" warnings · 9371322a
      Ramsay Jones 提交于
      Sparse issues an "using sizeof on a function" warning for each
      call to curl_easy_setopt() which sets an option that takes a
      function pointer parameter. (currently 12 such warnings over 4
      files.)
      
      The warnings relate to the use of the "typecheck-gcc.h" header
      file which adds a layer of type-checking macros to the curl
      function invocations (for gcc >= 4.3 and !__cplusplus). As part
      of the type-checking layer, 'sizeof' is applied to the function
      parameter of curl_easy_setopt(). Note that, in the context of
      sizeof, the function to function pointer conversion is not
      performed and that sizeof(f) != sizeof(&f).
      
      A simple solution, therefore, would be to replace the function
      name in each such call to curl_easy_setopt() with an explicit
      function pointer expression (i.e. replace f with &f).
      
      However, the "typecheck-gcc.h" header file is only conditionally
      included, in addition to the gcc and C++ checks mentioned above,
      depending on the CURL_DISABLE_TYPECHECK preprocessor variable.
      
      In order to suppress the warnings, we use target-specific variable
      assignments to add -DCURL_DISABLE_TYPECHECK to SPARSE_FLAGS for
      each file affected (http-push.c, http.c, http-walker.c and
      remote-curl.c).
      Signed-off-by: NRamsay Jones <ramsay@ramsay1.demon.co.uk>
      Signed-off-by: NJonathan Nieder <jrnieder@gmail.com>
      9371322a