My reading notes
git and github are different things
git lives on your pc
github is online not on your pc
git keeps history of changes
control systems
lets multiple devs work on the same code
commits are like snapshots with labels
git has a special label called head, that means you are here
merge conflicts
Repository is a file system
git clone insert url
git status
git add (individually)
git add . (all)
git commit -m “commit message in detail”
git push origin main
git pull (retrieve from main)
write in vs code to update your git on local