1. 09 4月, 2017 1 次提交
  2. 24 3月, 2017 1 次提交
  3. 09 3月, 2017 2 次提交
  4. 05 3月, 2017 1 次提交
    • M
      fork: Add --remote-name option · 8a4d8dd0
      Marc Abramowitz 提交于
      Allows the user to choose the remote name for their fork instead of
      always using their GitHub username. This is useful for workflows where
      folks name the remote for their private fork origin `origin` and
      the upstream repo remote is named `upstream`. We happen to use this
      workflow at work, because it makes the remote names more predictable and
      easy to manage (you always push your new commits to `origin` rather than
      a remote name that is dependent on your username).
      
      ```
      $ git remote -v
      upstream	git@github.com:github/hub (fetch)
      upstream	git@github.com:github/hub (push)
      
      $ ./bin/hub fork --remote-name=origin
      Updating origin
      From ssh://github.com/github/hub
       * [new branch]      1.11-stable     -> origin/1.11-stable
       * [new branch]      1.12-stable     -> origin/1.12-stable
       * [new branch]      2.2-stable      -> origin/2.2-stable
       * [new branch]      code-coverage   -> origin/code-coverage
       * [new branch]      gh-pages        -> origin/gh-pages
       * [new branch]      master          -> origin/master
       * [new branch]      travis-packages -> origin/travis-packages
      new remote: origin
      
      $ git remote -v
      origin	git@github.com:msabramo/hub.git (fetch)
      origin	git@github.com:msabramo/hub.git (push)
      upstream	git@github.com:github/hub (fetch)
      upstream	git@github.com:github/hub (push)
      ```
      
      I haven't written tests yet, but I can if this is a feature that the
      maintainers are amenable to merging...
      8a4d8dd0
  5. 16 2月, 2017 4 次提交
  6. 15 2月, 2017 4 次提交
  7. 06 2月, 2017 6 次提交
  8. 05 2月, 2017 2 次提交
  9. 04 2月, 2017 1 次提交
  10. 03 2月, 2017 1 次提交
    • N
      Set merge configuration on checkout. · 93df8266
      Natalie Weizenbaum 提交于
      When checking out a pull request that doesn't match an existing remote,
      this sets the branch's remote and merge configuration fields. If the
      pull request is modifiable by the maintainer, it uses the SSH URL to
      that you can push to the pull request.
      93df8266
  11. 25 1月, 2017 1 次提交
  12. 24 1月, 2017 1 次提交
  13. 23 1月, 2017 3 次提交
  14. 10 1月, 2017 2 次提交
  15. 06 1月, 2017 2 次提交
  16. 08 12月, 2016 3 次提交
  17. 06 12月, 2016 1 次提交
    • M
      Remove obsolete self-updating functionality · d400838e
      Mislav Marohnić 提交于
      We might bring back the self-updater at some point, but right now it's
      dead code and it's not clear to me how to implement it in a fashion
      where it also updates dependent files such as shell completion scripts
      and man pages.
      d400838e
  18. 29 11月, 2016 1 次提交
  19. 21 11月, 2016 1 次提交
  20. 07 11月, 2016 2 次提交