赞
踩
- //创建并切换分支
- git checkout -b branch-name
- //推送本地分支(冒号前面)到远程origin的分支(冒号后面)(没有会自动创建)
- git push origin branch-name:branch-name
- //检出git仓库分支到本地
- git checkout -b branch-name origin/branch-name
- //git仓库上分支已经删掉,清理本地分支命令
- git remote prune origin
- //将所有分支推送到远程origin仓库
- git push --all origin
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。