what is the correct commit syntax for all changes with a message code example
Example: git commit all changes
#Add all files which have been modified (including tracked and untracked)
git add -A
#Commit changes with a message
git commit -m "some message"