1. 10 8月, 2013 1 次提交
  2. 18 7月, 2013 2 次提交
  3. 17 7月, 2013 1 次提交
    • M
      pull-request: detect default branch for project · e645f9aa
      Mislav Marohnić 提交于
      This is usually "master" but for e.g. git-flow projects it's "develop".
      GitHub has an API field for the default branch but I avoided having to
      hit the API and instead read from the "head" of the origin remote.
      
        git rev-parse --symbolic-full-name origin
        #=> refs/remotes/origin/develop
      
      The "head" of the remote seems to be set at clone time by default, and
      can be manually set with:
      
        git remote set-head origin develop
      
      The pull-request command now detects this and sets the default branch as
      the pull request base instead of always assuming "master" at origin.
      
      Fixes #154, closes #326
      e645f9aa
  4. 13 7月, 2013 2 次提交
  5. 12 7月, 2013 1 次提交
  6. 11 7月, 2013 1 次提交
  7. 10 7月, 2013 8 次提交
  8. 03 7月, 2013 9 次提交
  9. 01 7月, 2013 2 次提交
    • D
      add hub commands to `hub help --all` · a549ccfc
      Dave Goodell 提交于
      While exploring the bash-based completion script for zsh, I initially
      implemented this so that the bash script would see the new commands.
      Obviously this didn't work because the completion script invokes the
      real `git` command, not `hub`.  But I think the feature is nice for
      users.
      a549ccfc
    • D
      fix zsh completion · cb9bb13a
      Dave Goodell 提交于
      This `_hub` completion script should correctly wrap modern versions of
      the `_git` scripts distributed by both zsh (native) and git
      (bash-based).  The bash-based version could use a bit more love to
      complete arguments to the actual subcommands.  Right now it can only
      complete the names of the subcommands themselves.
      
      The `compdef` that was previously emitted by `hub alias -s` prevents the
      new `_git` script from working, so it has been eliminated.
      
      Fixes #231
      cb9bb13a
  10. 26 6月, 2013 3 次提交
  11. 21 6月, 2013 3 次提交
  12. 26 5月, 2013 5 次提交
  13. 14 5月, 2013 2 次提交