我得到了关于如何将应用程序部署到 Git 和 Heroku 的说明,但是因为我对 Git 不是很熟悉(我只知道“基础知识”),所以我想请你帮忙。我已经从 Heroku 下载了该应用程序。这是我应该做的:
Create separate git branches for new updates, push the branch to Github, create pull requests and merge them into master.
Then pull the master branch locally and deploy to Heroku.
正确的工作流程应该是什么?经过研究:
git branch new_branch
git push origin new_branch
git fetch new_branch
git merge master/new_branch
git push heroku...
请您纠正我的工作流程吗?
谢谢