问题:用vscode提交会报错,原因是没有输入密码
需要输入密码用原始git命令:
1、本地当前分支映射远程分支:
git branch -u origin/master
2、拉取远程分支代码:
git pull(输入密码)
3、推送代码:
To push to the upstream branch on the remote, use
git push origin HEAD:master(输入密码)
To push to the branch of the same name on the remote, use
git push origin zk-dev(输入密码)
4、推送并在远程建立和本地分支同名分支:
git push --set-upstream origin develop