1. 22 11月, 2013 6 次提交
  2. 14 11月, 2013 16 次提交
  3. 13 11月, 2013 1 次提交
  4. 12 11月, 2013 2 次提交
  5. 29 10月, 2013 1 次提交
  6. 15 10月, 2013 1 次提交
  7. 05 10月, 2013 1 次提交
  8. 03 10月, 2013 3 次提交
  9. 02 10月, 2013 1 次提交
  10. 30 9月, 2013 1 次提交
  11. 29 9月, 2013 1 次提交
  12. 20 9月, 2013 1 次提交
  13. 13 9月, 2013 1 次提交
  14. 10 8月, 2013 1 次提交
  15. 18 7月, 2013 2 次提交
  16. 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