xxxxxxxxxx
echo "# lit-alumni" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Haymoux/lit-alumni.git
git push -u origin main
xxxxxxxxxx
echo "# REPOSITORYNAME" >> README.md
git init
git add README.md
git commit -m "COMMIT MESSAGE"
git branch -M main
git remote add origin https://github.com/USERNAME/REPOSITORYNAME.git
git push -u origin main
xxxxxxxxxx
echo "# REPOSITORY NAME" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin <https github file>
git push -u origin main
xxxxxxxxxx
echo "# sucide_linux_i3_dotfiles" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/klownie/sucide_linux_i3_dotfiles.git
git push -u origin main
xxxxxxxxxx
echo "# Codecademy.github.io" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/868-Anton/Codecademy.github.io.git
git push -u origin main
xxxxxxxxxx
echo "# oop_labs" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Your-Name/repository.git
git push -u origin main
Create a repository from command line interface using bash and curl api
xxxxxxxxxx
curl -u "<username>" https://api.github.com/user/repos -d '{"name":"<repository-name>", "auto_init":"true", "default_branch":"main"}'
After entering, github may request your password or your Personal Access Token
xxxxxxxxxx
git init
git add README.MD
git commit -m "commit message"
git remote add origin git url_of_github_repo
git push origin master
xxxxxxxxxx
echo "# plus50x" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/keen003/plus50x.git
git push -u origin main
xxxxxxxxxx
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
xxxxxxxxxx
echo "# motto" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/1o1development/motto.git
git push -u origin master