How We Do It

So, what is GitHub Flow?

  • Anything in the master branch is deployable
  • To work on something new, create a descriptively named branch off of master (ie: new-oauth2-scopes)
  • Commit to that branch locally and regularly push your work to the same named branch on the server
  • When you need feedback or help, or you think the branch is ready for merging, open apull request
  • After someone else has reviewed and signed off on the feature, you can merge it into master
  • Once it is merged and pushed to ‘master’, you can and should deploy immediately

相关文章:

  • 2021-11-29
  • 2021-08-12
  • 2021-08-30
  • 2022-02-10
  • 2022-12-23
  • 2022-01-21
  • 2021-05-20
  • 2021-09-09
猜你喜欢
  • 2022-12-23
  • 2021-04-22
  • 2021-04-25
  • 2021-11-06
  • 2021-11-03
  • 2022-02-07
  • 2022-02-20
相关资源
相似解决方案