*The Problem* I'm using a bare repo to store multiple projects.
Recently I cannot list the branches on my remote bare.git repo. *When things where working I could see my projects like so:* mkdir new-repo cd new-repo git init git remote add origin ~/path/to/bare.git git ls-remote origin dcca23413a0e94660cd2073c7b75e09b14923dd9 refs/heads/project1 ... ... ... *(30+ projects/branches in a list)* *This is what is happening now:* mkdir new-repo cd new-repo git init git remote add origin ~/path/to/bare.git 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)* And the contents of these files point to files under the objects subdirectory -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
