我在服務器上有一個分支主機(遠程)。我創建了遠程(服務器)上不存在的新本地分支。如何添加(推)的分支到遠程(服務器),而與主分支git push branch without merge
4
A
回答
4
git push remote local_branch_name:remote_branch_name
通常你的遠程將是起源,並且本地和遠程分支將是相同的(儘管你可以推送本地分支作爲不同名稱的遠程)。如果他們的名字是相同的,你不必提供冒號分隔的名字 - 一個就足夠了。
你試圖實現什麼與合併分支無關。我建議進一步閱讀關於分支機構和遙控器(git-scm book是相當不錯的資源)。
6
您可以使用下面的命令合併它:
git push -u origin newBranch
-u
將設立當地分行追蹤遠程分支。
0
你只需把你的本地分支:
$ git push origin <your-branch>
可以使用-u
標誌,可以設定當地BRACH跟蹤遠程過。
相關問題
- 1. git merge或rebase for stale branch?
- 2. git merge,push,pull confusion
- 3. Heroku - Git push without building
- 4. 如何讓'git push'像'git push origin branch'一樣工作?
- 5. Git merge master into development branch is overwriting,not merging
- 6. git-filter-branch vs. rebase + reset --hard + push --force
- 7. 將'git push origin <branch>'從本地刪除後遠程刪除<branch>?
- 8. 爲什麼git push的工作方式不同於git push origin <branch>?
- 9. 無意中做了git push而不是git push -u來源<branch>
- 10. 「git push origin <branch>」和「git flow feature publish」有什麼區別?
- 11. 的Git -push錯誤
- 12. git merge-base交換?
- 13. 「git merge origin/branch」中遺忘斜槓的後果
- 14. PushSharp:Android GCM Push Notification received without push message
- 15. Git push upstream
- 16. 有什麼區別git fetch B + git merge B vs git merge origin/B
- 17. git checkout --track origin/branch和git checkout -b branch branch/branch之間的區別
- 18. git merge --no-ff和git merge有什麼區別--squash
- 19. Git Branches Without Pulling
- 20. VS 2017團隊資源管理器GIT「Push Branch」灰色
- 21. 如何在執行'git merge'或'git checkout branch'時抑制文件更改事件
- 22. git add remote branch
- 23. Git Branch Follow Master
- 24. git push/pull - 默認爲github
- 25. git rebase from master to remote branch。!
- 26. git push -u是什麼意思?
- 27. Heroku - git push
- 28. git push git過濾分支被拒絕
- 29. git push -f origin master和git push origin master之間的區別--force?
- 30. 「git branch -track」vs「git checkout -track」
我已經開始閱讀這本書了,但我急需這個。這正是我一直在尋找的。謝謝! – nikmin