Setting up a new Git Repo
##Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:alexpchin/<reponame>.git
git push -u origin master
##Push an existing repository from the command line
git remote add origin git@github.com:alexpchin/<reponame>.git
git push -u origin master
@Amruth-Smaragdine I just created a repo using single quotes before the flower brackets and it worked.
I did this on Microsoft Windows 10 using Git Bash which is part of Git for Windows
While typing this comment I realized you said Microsoft Windows 10 command line, I'll try to create the repo with it using single quotes before the flower brackets and see how it goes.