how come running git branch branchname the branch does not appear on the github website and why cant i push to a branch that i made locally. I have done this:
git clone https://github.com/myname/myrep.git
git branch gitcheat
git checkout gitcheat
git branch
* gitcheat
master
i tried
git push gitcheat gitcheat
but i got
fatal: 'gitcheat' does not appear to be a git repository
How do i get my local branch to be stored online in the git repo as a branch so i can push and pull to it like i do with the master branch