Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在本地和远程都有一个主分支。我在 master 分支上做了一些提交,并将它们推送到远程。现在,我在远程创建了一个新分支 x 并希望将唯一的最新提交推送到该分支,而不是我已推送到远程 master 的所有提交。
你到底是什么意思?您是否尝试将本地提交推送到远程分支“x”而不是远程主分支?为此,我相信它是:
git push remote x
或者如果具有提交的本地分支具有不同的名称:
git push remote src_branch:dest_branch
但是,如果您可以更详细地解释问题会有所帮助,那么您要尝试做什么还不是很清楚。