How to see a branch created in master
- by richard
Hi,
I create a branch in my master repository (192.168.1.2).
And in my other computer, I did '$ git pull --rebase ', I see
Unpacking objects: 100% (16/16), done.
From git+ssh://[email protected]/media/LINUXDATA/mozilla-1.9.1
62d004e..b291703 master -> origin/master
* [new branch] improv -> origin/improv
But when I do a 'git branch' in my local repository, I see only 1 branch and I did '$ git checkout improv '
$ git branch
* master
$ git checkout improv
error: pathspec 'improv' did not match any file(s) known to git.
Did you forget to 'git add'?