can i make a new github remote repository using cmd code example
Example: create new repository on the command line
git init
git add README.MD
git commit -m "commit message"
git remote add origin git url_of_github_repo
git push origin master
git init
git add README.MD
git commit -m "commit message"
git remote add origin git url_of_github_repo
git push origin master