Committing:
*Commiting changes in specific files
You can commit changes made to specific files and skip staging them using git add:
git commit file1.c file2.h
Or you can first stage the files:
git add file1.c file2.h
and commit them later:
git commit