本地切换并创建新分支
git checkout -b 'doclever_201909'
拉取远程分支
git pull
报错 here is no tracking information for the current branch.
根据提示输入
git branch --set-upstream-to=origin/doclever_201909 doclever_201909
继续 git pull 成功