在vscode新增一个码云仓库。报错如下:
> git pull --tags
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=<remote>/<branch> master
解决办法
先执行第一句
git remote add origin 'http://git.....'
再推送或命令推送
git push -u origin master