查看分支temp的追踪分支:
git config -l = git config -list列出所有变量的值
git config -l | grep 'branch\.temp'
branch.temp.remote=origin //远程仓库
branch.temp.merge=refs/heads/master //追踪分支
设置本地分支的追踪分支:
git checkout -b temp --track origin/xxx //创建分支时
git branch --set-upstream temp origin/xxx //设置既有分支