Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 669 Bytes

File metadata and controls

32 lines (25 loc) · 669 Bytes

Git Commands

ex01-dark-mode-calculator

ex02-


HTML Tags

  • 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