1. 11 5月, 2017 1 次提交
    • P
      Upgrade to Go 1.8 · 71fa8dad
      Pepper Lebeck-Jobe 提交于
      The only thing that has substansively changed is that Go 1.8 handles
      redirect logic more safely than previous versions. This means we can
      drop our special handling to avoid following redirects to other
      domains. We were only doing that to protect against the possibility
      of leaking auth headers. With Go 1.8, the auth headers are not
      forwarded when following a redirect to another domain, so we don't
      need our special handling any more.
      
      As long as people are attempting to build with the Makefile, the new
      check_go_version script should cause the build to stop if our
      collaborators aren't using at least version 1.8 of go.
      71fa8dad
  2. 16 2月, 2017 1 次提交
    • M
      Remove "Prior art" section from README · c46c7b1b
      Mislav Marohnić 提交于
      These are very old projects from another time. Today, it doesn't make
      sense to try to list similar projects, as they are easily discoverable
      through other means. In the recent years, hub hasn't taken direct
      inspiration from projects other than git.
      
      Closes #1345
      c46c7b1b
  3. 23 1月, 2017 1 次提交
  4. 18 10月, 2016 1 次提交
    • M
      Fix typo · 24aee01c
      Marcio Puga 提交于
      compliation -> compilation
      24aee01c
  5. 07 10月, 2016 1 次提交
  6. 04 10月, 2016 2 次提交
  7. 15 8月, 2016 1 次提交
  8. 30 1月, 2016 1 次提交
  9. 24 1月, 2016 4 次提交
  10. 14 10月, 2015 1 次提交
  11. 28 9月, 2015 1 次提交
  12. 29 7月, 2015 1 次提交
  13. 22 5月, 2015 1 次提交
  14. 16 2月, 2015 1 次提交
  15. 23 1月, 2015 1 次提交
  16. 13 12月, 2014 1 次提交
  17. 09 12月, 2014 1 次提交
  18. 01 12月, 2014 1 次提交
  19. 30 10月, 2014 2 次提交
    • J
      95f1a37f
    • R
      Add example for issue number · 8b2ea764
      Richard Littauer 提交于
      Technically, anything in the third argument is passes as a string, so you can look at any file if you know the hash (for instance, `blob/HASH/app/index.js`. However, having the issue number passed seems to me to be something really useful to my workflow, so I was hoping to find something in the documentation about it. 
      
      Another possibility would be to enable a fourth argument for issue number. I'm happy to do a PR for this if something things it might be of more worth than just this edit.
      8b2ea764
  20. 29 10月, 2014 1 次提交
  21. 28 10月, 2014 1 次提交
  22. 21 10月, 2014 2 次提交
  23. 30 7月, 2014 1 次提交
  24. 12 3月, 2014 1 次提交
  25. 22 12月, 2013 3 次提交
  26. 22 11月, 2013 1 次提交
  27. 15 10月, 2013 1 次提交
  28. 03 10月, 2013 1 次提交
  29. 14 8月, 2013 1 次提交
  30. 13 7月, 2013 1 次提交
  31. 10 7月, 2013 1 次提交
  32. 13 5月, 2013 1 次提交
    • M
      enable passing in `pull-request` title & body · 37accd47
      Mislav Marohnić 提交于
      Emulates the interface of `git commit`:
      
        $ hub pull-request -m "This is my title"
        $ hub pull-request -F /path/to/message.txt
        $ hub pull-request -F -
      
      The old way of passing in just title is deprecated
      
        $ hub pull-request "Deprecated title"
      
      Fixes #183
      37accd47