On Mon, 30 Mar 2015 08:59:47 -0700 (PDT)
Frank Gutierrez <dearfra...@gmail.com> wrote:

[...]
> git ls-remote origin 
> 
> dcca23413a0e94660cd2073c7b75e09b14923dd9 refs/heads/project1
> 
> *(only one project/branch shown)*
> 
> 
> 
> *My bare.git repo does have files under the refs subdirectory:*
> 
> refs
> ├── heads
> │   ├── feature
> │   │   ├── project1
> │   │   └── project2
> ...
> ...
> *(30+ projects/branches in a list)*

What happens if you do

  cd ~/path/to/bare.git
  git branch -a

?

Does it list all your 30+ branches?
I mean, check the bare repository itself: many Git commands work in bare
repos just like they do in normal repos.

I also recommend you to run

  GIT_TRACE=1 git ls-remote origin

to double-check what Git actually calls looks sensible.

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to