Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 437 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 437 Bytes

Demo Repo 2

Some text.

Good tutorial on how to use Git and GitHub https://www.youtube.com/watch?v=RGOj5yH7evk&ab_channel=freeCodeCamp.org

Tips

git remote add origin [repo-url] connects the current local repo to the remote repo

git push -u origin main sets up push send to the remote repo by just using "git push"

Write code on local repo git add (stage changes) git commit (commit changes) git push (push changes to remote repo)