When cloning a repositoy with --bare
git log
has no status about the remote branches. There might be a good reason for it but I don't get it. git fetch origin
seems to be successful but the remote branches are still mising in the log.
EDIT: I mean I can add fetch = +refs/heads/*:refs/remotes/origin/*
to the [remote "origin"]
section in the configuration (git config --edit
) but it doesn't feel right.