For Single File
git add file1 && git commit -m "Your Comment"
For Multiple Files
git add file1 file2 file3 && git commit -m "Your Comment"
For All Files and Changes
git add . && git commit -m "Your Comment"