I'm cloning a fork of a project in github and want to set up an upstream remote to track the original project. As I understand things, fetching the upstream remote should create tracking branches of the remotes branches in my local repo, but git isn't doing that, so either I misunderstand the process or I'm doing something wrong.
I've tried both
git remote add upstream https://github.com/dude1/awesome-project.git
git fetch upstream
and
git remote add -f upstream https://github.com/dude1/awesome-project.git
and when I do git branch -a
after either set of operations all I have is my origin tracking branches.
What am I doing wrong?