git status
git add .
# OR
git add --all
# OR
git add hello-world.js
# OR
git add dir/
git status
git commit -am "hello world changes"
-am
: All commits with message
git push -u origin branchName
# OR
git push # pushes the current branch to the configured upstream