欢迎关注微信公众号:【 全栈攻略 】
报警信息:
There is no tracking information for the current branch.
Please specify which branch you want to rebase against.
原因: 是因为本地的develop分支和远程的develop没有建立关联导致的
解决方法:
git branch --set-upstream-to=origin/远程分支名 本地分支名
即:git branch --set-upstream-to=origin/develop develop
再通过 git branch -vv
确认是否关联成功。