Jens: > > Can you see the branch on your web browser? > Yep > > Does "git branch -a" print origin/aufs2-29 branch after git-clone? > No, after a fresh clone from a few seconds ago I have: > j...@donald:~/aufs2-standalone.git$ git branch -a > * master > origin/HEAD > origin/aufs2-27 > origin/aufs2-28 > origin/master > > Is there some caching done by git? (Please tell me if I shouldn't be > bothering > the mailinglist with this, I don't know a lot about git, so I may be missing > something obvious)
I'm a newbie too. :-) And I could confirm that a fresh clone does NOT contain all branches. Bruno (or anyone else), Could you clarify what is wrong? What I did is, $ cd /my/working $ git push -v --all origin Pushing to [email protected]:aufs/aufs2-standalone.git Enter passphrase for key '/home/jro/.ssh/c3sljro': To [email protected]:aufs/aufs2-standalone.git = [up to date] aufs2 -> aufs2 = [up to date] aufs2-27 -> aufs2-27 = [up to date] aufs2-28 -> aufs2-28 = [up to date] aufs2-29 -> aufs2-29 = [up to date] master -> master updating local tracking ref 'refs/remotes/origin/aufs2' updating local tracking ref 'refs/remotes/origin/aufs2-27' updating local tracking ref 'refs/remotes/origin/aufs2-28' updating local tracking ref 'refs/remotes/origin/aufs2-29' updating local tracking ref 'refs/remotes/origin/master' Everything up-to-date $ cat .git/config [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "origin"] url = [email protected]:aufs/aufs2-standalone.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master [branch "aufs2-27"] remote = . merge = refs/heads/master [branch "aufs2-28"] remote = . merge = refs/heads/master [branch "aufs2-29"] remote = . merge = refs/heads/master [branch "aufs2"] remote = . merge = refs/heads/master $ cd /tmp/work $ git clone -q http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-standalone.git $ cd aufs2-standalone $ git branch -r origin/HEAD origin/aufs2-27 origin/aufs2-28 origin/master J. R. Okajima ------------------------------------------------------------------------------
