我們有本地功能黨支部,github上origin
分支和Heroku的staging
和production
遠程分支機構。的Heroku:混帳推分期本地分支:主
隨着地方特色成爲準備審查更多的觀衆,我們希望他們推到staging
:我的
$ git push staging local-branch-name:master
Fetching repository, done.
To [email protected]:app-staging.git
! [rejected] local-branch-name -> master (non-fast-forward)
error: failed to push some refs to '[email protected]:app-staging.git'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and integrate the remote changes
hint: (e.g. 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
部分要--force
這個問題,但git push -f
到遠程是大忌。我可以像「提示」所說的那樣引入變化,但考慮到我們推入分支的分支通常是短暫的,可能與彼此沒什麼關係,這似乎是沒有必要和令人困惑的。
在Heroku上共享臨時服務器的正確過程是什麼?
好的,這正是我的預期,但我已經陷入困境迫使共享回購所以想得到確認。 – Meltemi
是的,通常這是一個非常糟糕的主意。我爲我的答案增加了一個更好的解釋。 –