GIT - dathalongbay/notes GitHub Wiki
https://forum.freecodecamp.org/t/push-a-new-local-branch-to-a-remote-git-repository-and-track-it-too/13222
git add .
git status
git commit -m 'message'
git pull
git push origin master
git checkout -b dev main
Or you can use the -u flag (upstream) when you make your first push:
git push -u origin BRANCH