Currently when I run git push test-server development:master
it is pushing up my github committed code. What I want to do is to push up what I am working on locally in my test
branch to run tests on the server without needing to commit that to github. Is this possible? If so, what command do I use? Thanks
質問する
53 次
2 に答える
0
ブランチをherokuにプッシュするのは次のとおりです。
git push heroku your_branch:master
# Where [master:branch_name] = master is heroku, branch_name is your local branch
プッシュマスター自体は
git push heroku master
たとえば、最近ブランチv311
がありました-herokuにプッシュしたかったのですが、(まだ)マスターにマージしたり、githubにプッシュしたりしたくないので、次を使用しました:
git push heroku v311:master
于 2012-08-22T02:46:44.570 に答える
0
それが可能だ。テスト ブランチを heroku にプッシュするだけです。
$ git push test-server test:master
于 2012-08-22T03:22:22.427 に答える