I cloned a remote branch to my local, and checked out to a new branch with the command:
git checkout -b branchname
and then I tried to push this new branch to remote and to setup upstream, but I incorrectly forgot to specify the branchname:
git push -u origin
what happens in this case? Did I cover other people's work on the remote branches?
Thanks in advance.