How to see a branch created in master

Posted by richard on Stack Overflow See other posts from Stack Overflow or by richard
Published on 2010-05-24T04:13:15Z Indexed on 2010/05/24 4:20 UTC
Read the original article Hit count: 298

Filed under:

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'?

© Stack Overflow or respective owner

Related posts about git