to create repo on github click
Follow step there
git init
It is recommended that every repository include a README, LICENSE, and .gitignore*.
touch .gitignore
touch README.md
touch LICENSE
git remote add origin https://[email protected]/paneru-rajan/repo-name.git
git config --local remote.origin.url https://[email protected]/paneru-rajan/repo-name.git
git config --local user.name 'Rajan Paneru'
git config --local user.email '[email protected]'
git config -l
git add .
git commit -m 'Initial Commit'
git push -u origin master