- git clone https://github.com/progaurab/html-css-js-tutorial.git
- git add .
- git commit -m "minor fixes"
- git push
- cite:
- abbr:
…or create a new repository on the command line
echo "# Example" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/progaurab/Example.git
git push -u origin master
…or push an existing repository from the command line
git remote add origin https://github.com/progaurab/Example.git
git branch -M master
git push -u origin master