赞
踩
git push origin -u Feature_new_branch
使用 -u参数
如果本地新增branch,修改后直接 git push 可能会失败。怎么办? -u来解决
git checkout -b Feature_new_branch
vim xxx.c
git add xxx.c
git commit -m "xxx.c create"
git push origin Feature_new_branch
#可能失败,如果服务端不允许git push origin -u Feature_new_branch
备注:如果远端开启了分支保护类似的功能。无法直接push新的本地分支。
git push --help
git push origin -u Feature_new_branch
就可以快速提交
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。