1. 18 3月, 2013 2 次提交
  2. 17 3月, 2013 4 次提交
  3. 14 3月, 2013 1 次提交
  4. 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
  5. 11 3月, 2013 4 次提交
  6. 10 3月, 2013 2 次提交
  7. 09 3月, 2013 2 次提交
  8. 08 3月, 2013 9 次提交
  9. 07 3月, 2013 2 次提交
  10. 06 3月, 2013 2 次提交
  11. 05 3月, 2013 2 次提交
  12. 04 3月, 2013 1 次提交
  13. 03 3月, 2013 1 次提交
  14. 02 3月, 2013 3 次提交
    • J
      Sync with 1.8.1.5 · 06d67b87
      Junio C Hamano 提交于
      06d67b87
    • J
      Git 1.8.1.5 · e6363a49
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      e6363a49
    • T
      Make !pattern in .gitattributes non-fatal · 8b1bd024
      Thomas Rast 提交于
      Before 82dce998 (attr: more matching optimizations from .gitignore,
      2012-10-15), .gitattributes did not have any special treatment of a
      leading '!'.  The docs, however, always said
      
        The rules how the pattern matches paths are the same as in
        `.gitignore` files; see linkgit:gitignore[5].
      
      By those rules, leading '!' means pattern negation.  So 82dce998
      correctly determined that this kind of line makes no sense and should
      be disallowed.
      
      However, users who actually had a rule for files starting with a '!'
      are in a bad position: before 82dce998 '!' matched that literal
      character, so it is conceivable that users have .gitattributes with
      such lines in them.  After 82dce998 the unescaped version was
      disallowed in such a way that git outright refuses to run(!) most
      commands in the presence of such a .gitattributes.  It therefore
      becomes very hard to fix, let alone work with, such repositories.
      
      Let's at least allow the users to fix their repos: change the fatal
      error into a warning.
      
      Reported-by: mathstuf@gmail.com
      Signed-off-by: NThomas Rast <trast@student.ethz.ch>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      8b1bd024