Git workflow

check for diff from last commit

$ git diff --histogram

check for existing commits

$ git status 

add specific files to be committed

$ git add .

commit filed to be pushed

$ git commit -m "commit msg"

push added and committed files

$ git push origin main