使用vscode上传到码云及报错解决(There is no tracking information for the current branch)
1. 根据官方文档,实现提交代码到码云仓库
文档地址:https://gitee.com/help/articles/4122
但是执行后出现报错:There is no tracking information for the current branch
2. 解决办法:git branch –set-upstream-to=origin/new new
new分别为 远程分支地址 和 本地分支地址
例:
再执行提交 git pull
问题解决!!!!!!!