create a repository using git bash code example
Example 1: how to initialize a git repository command line
git init
git add .
git commit -m "Initial commit"
git remote add origin [email protected]:username/new_repo
git push -u origin master
Example 2: git init repo
git init
git add somefile
git commit -m "initial commit"
git remote add origin https://github.com/username/new_repo
git push -u origin master
Example 3: create github repo with bash
winpty curl -H 'Authorization: token [GENERATED_TOKEN]' https://api.github.com/user/repos -d '{"name":"[REPO_NAME_YOU_WANT]"}'
https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line