I create a new branch like this:
git branch dev-itt-9
However, it only creates a new branch on local
git branch -a * dev-itt-9 master testing remotes/origin/HEAD -> origin/master remotes/origin/development remotes/origin/master remotes/origin/testing
What is the proper way to create a new branch on both local and remote?
I am quite new to git. Sorry if my question is stupid.