赞
踩
使用大乌龟(tortoiseGit)提交会报错:
git.exe pull --progress -v --no-rebase --allow-unrelated-histories "origin" newBranch
POST git-upload-pack (349 bytes)
fatal: couldn't find remote ref newBranch
可以使用命令行进行提交,以下时使用步骤:
要将本地创建的分支推送到远程仓库,你可以使用 git push
命令。下面是推送分支到远程仓库的步骤:
**切换到要推送的分支:**首先,确保你已经切换到了你想要推送的分支。假设你要推送的分支名为 newBranch
,可以使用以下命令切换到该分支:
git checkout newBranch
或者使用现代的方式:git switch newBranch
**推送到远程仓库:**一旦你在要推送的分支上,使用 git push
命令推送到远程仓库。语法如下:
git push <remote_name> <local_branch_name>:<remote_branch_name>
其中:
<remote_name>
是远程仓库的名称,通常默认为 origin
。<local_branch_name>
是要推送的本地分支的名称,即你当前所在的分支。<remote_branch_name>
是要创建或更新的远程分支的名称。如果远程仓库中不存在这个分支,则会创建一个新的分支。例如,要将本地的 newBranch
推送到远程仓库并在远程仓库中命名为 newBranch
,你可以执行以下命令:
git push origin newBranch:newBranch
如果你想在远程仓库中使用不同的名称,可以将 <remote_branch_name>
替换为你想要的名称。
**确认推送成功:**推送完成后,Git 应该会显示推送的结果。确保没有出现错误消息,并且分支已经成功推送到远程仓库。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。