I create 2 local branches to track remote branches:
# git branch1 -t origin/branch1
# git branch2 -t origin/branch2
But after I do a 'repo sync' and I do a git remote show origin, I see my branches are 'merges with remote dev, not branch1 and branch2' and they are 'pushes to' correctly' but it said 'local out of date'.
# git remote show origin
...
Local branches configured for 'git pull':
branch1 merges with remote dev
branch2 merges with remote dev
Local refs configured for 'git push':
branch1 pushes to branch1 (local out of date)
branch2 pushes to branch2 (local out of date)
how can I get my branches (branch1, branch2) to 'merges with the right branches'? And get my 'local no longer 'out of date'?
Thank you.
