For some reason my Branches are not showing up in Github. However, when I execute git tag --all they show up there which indicates they are not missing.
Why would I only see the Master Branch in Github when I clearly have multiple branches in the local repository?
Pushing only pushes the current branch. You need to push the branches that you want published, if that’s all of them, then the answer your referenced : git push –all should help!