赞
踩
git push -u origin new-branch
其中 origin
是远程仓库的默认名称,new-branch
是你的本地分支名。-u
参数用于设置上游(tracking)关系,这样以后就可以直接使用 git push
或 git pull
而不需指定分支名。
git push origin local-branch-name:remote-branch-name
这将会创建一个名为 remote-branch-name 的新分支在远程仓库,并推送本地的local-branch-name到这个新分支。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。