1

アプリを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...

ワークフローについて訂正してもらえますか?

ありがとうございました

4

1 に答える 1

1

アプリのクローンを作成/プルした後の正しいワークフローは次のとおりです。

git branch new_branch
git checkout new_branch
### Now you can make changes, develop your update
git commit -am "some message"
git push origin new_branch

ブランチをマスターにマージするには、次のようにします。

git checkout master
git merge new_branch

また、例のherokuなど、好きな場所にプッシュ/デプロイできます。お役に立てれば..

于 2013-01-02T11:15:51.403 に答える