git 推送到指定远程分支
时间: 2024-02-23 14:44:40 浏览: 238
git提交本地分支到远程分支 - springbarley - 博客园1
可以通过以下命令将本地分支推送到指定的远程分支:
git push <remote> <local_branch>:<remote_branch>
其中,<remote> 为远程仓库名,<local_branch> 为本地分支名,<remote_branch> 为远程分支名。例如,将本地的 master 分支推送到远程的 origin 仓库的 develop 分支,可以使用以下命令:
git push origin master:develop
阅读全文