1. 03 1月, 2019 2 次提交
  2. 28 12月, 2018 7 次提交
  3. 23 12月, 2018 2 次提交
  4. 21 12月, 2018 3 次提交
  5. 20 12月, 2018 2 次提交
  6. 19 12月, 2018 7 次提交
  7. 18 12月, 2018 2 次提交
  8. 17 12月, 2018 1 次提交
  9. 11 12月, 2018 4 次提交
    • M
      hub 2.6.1 · d89b5c6f
      Mislav Marohnić 提交于
      d89b5c6f
    • M
      Merge pull request #1964 from jacobbednarz/fix-git-help-output · 3e712fcd
      Mislav Marohnić 提交于
      Restore pre-2.20.0 `git help` output
      3e712fcd
    • M
      7642e5b9
    • J
      Restore pre-2.20.0 `git help` output · 9bb5ffa9
      Jacob Bednarz 提交于
      After upgrading to Git 2.20.0, all operations that relied on `hub alias`
      would indefinitely hang. It can be reproduced using the following:
      
      1. Create a new alias such as `st` for `git status`.
      2. Run `hub <alias>` in a git repository.
      
        ```
        $ hub st
      
        ... hangs forever
        ```
      
      Inspecting the running process shows that it is executing `git help -a`
      and not able to proceed. Digging into the `hub` shows that the `help`
      command is called within `IsBuiltInGitCommand`. Once this entrypoint was
      found, I started bisecting and found this works in 2.19.x but fails in
      2.20.x. Sure enough, the Git 2.20.0 release notes mention a
      corresponding change[1].
      
      >  * "git help -a" now gives verbose output (same as "git help -av").
      >    Those who want the old output may say "git help --no-verbose -a".
      
      It was even nice enough to include the backwards compatibility fix :)
      
      To fix the hanging, I've restored the existing behaviour by including
      the `--no-verbose` flag that mimics the 2.19.x behaviour.
      
      Fixes #1963
      
      [1]: https://github.com/git/git/blob/master/Documentation/RelNotes/2.20.0.txt#L17-L18
      9bb5ffa9
  10. 28 11月, 2018 6 次提交
  11. 22 11月, 2018 1 次提交
  12. 21 11月, 2018 2 次提交
  13. 13 11月, 2018 1 次提交