Learn Git [Full Course] | Boot.dev
Git Tutorials and Training | Atlassian Git Tutorial
open git bash
$ git config --global [user.name](<http://user.name/>) "Cooper Johnstone"
$ git config --global user.email "[[email protected]](<mailto:[email protected]>)"
View current config
git config --list --local
in vs code cmd line (ctl `)
adds a .git folder in the working folder
git init
Add all files
git add .
Add specific file
git add filename.ext
commit
git commit -m 'og'
unstage all