1. 17 3月, 2013 4 次提交
  2. 14 3月, 2013 1 次提交
  3. 12 3月, 2013 5 次提交
    • J
      Merge branch 'maint' · ce432cac
      Junio C Hamano 提交于
      * maint:
        git.c: make usage match manual page
      ce432cac
    • K
      git.c: make usage match manual page · 03a0fb0c
      Kevin Bracey 提交于
      Reorder option list in command-line usage to match the manual page.
      Also make it less than 80-characters wide.
      Signed-off-by: NKevin Bracey <kevin@bracey.fi>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      03a0fb0c
    • J
      Merge branch 'mp/complete-paths' · f1eba9f0
      Junio C Hamano 提交于
      * mp/complete-paths:
        git-completion.bash: zsh does not implement function redirection correctly
      f1eba9f0
    • J
      Merge branch 'mm/add-u-A-finishing-touches' · c75aa630
      Junio C Hamano 提交于
      * mm/add-u-A-finishing-touches:
        add: update pathless 'add [-u|-A]' warning to reflect change of plan
      c75aa630
    • M
      git-completion.bash: zsh does not implement function redirection correctly · 35ba83cc
      Matthieu Moy 提交于
      A recent change added functions whose entire standard error stream
      is redirected to /dev/null using a construct that is valid POSIX.1
      but is not widely used:
      
      	funcname () {
      		cd "$1" && run some command "$2"
      	} 2>/dev/null
      
      Even though this file is "git-completion.bash", zsh completion
      support dot-sources it (instead of asking bash to grok it like tcsh
      completion does), and zsh does not implement this redirection
      correctly.
      
      With zsh, trying to complete an inexistant directory gave this:
      
        git add no-such-dir/__git_ls_files_helper:cd:2: no such file or directory: no-such-dir/
      
      Also these functions use "cd" to first go somewhere else before
      running a command, but the location the caller wants them to go that
      is given as an argument to them should not be affected by CDPATH
      variable the users may have set for their interactive session.
      
      To fix both of these, wrap the body of the function in a subshell,
      unset CDPATH at the beginning of the subshell, and redirect the
      standard error stream of the subshell to /dev/null.
      Signed-off-by: NMatthieu Moy <Matthieu.Moy@imag.fr>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      35ba83cc
  4. 11 3月, 2013 4 次提交
  5. 10 3月, 2013 2 次提交
  6. 09 3月, 2013 2 次提交
  7. 08 3月, 2013 9 次提交
  8. 07 3月, 2013 2 次提交
  9. 06 3月, 2013 2 次提交
  10. 05 3月, 2013 2 次提交
  11. 04 3月, 2013 1 次提交
  12. 03 3月, 2013 1 次提交
  13. 02 3月, 2013 5 次提交