Check your local status.
git status
Add all local changes and unstaged files.
git add .
Commit local staged changes to current branch.
git commit -m "msg"
Commit local staged changes to current branch tagging with issue number.
git commit -m "#23 - msg"
Remove all local cached files, useful for mass updates or including changes from .gitignore
.
git rm -rf --cached .
Pushing a non-commit, used to force a deployment on some systems.
git commit --allow-empty --allow-empty-message -m ''