Puis-je créer un référentiel Git via le terminal

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin [email protected]:alexpchin/<reponame>.git
git push -u origin master
Magnificent Mink