Aug 10, 2024
Terminal > New Terminal).git init in the terminal to initialize a new Git repository.git status:
git add . (period adds all changes).git commit -m "first commit".index.html.
git add ., git commit -m "added paragraph".git-example-project).git remote add origin <repository-url>git push -u origin masterindex.html again and add new file page2.html.git add . and git commit -m "message".git push.