Commiting changes in specific files

suggest change

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

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents