commit git add and git commit code example
Example 1: git commit
git add index.html css/styles.css
git add .
git commit -m "Change titles and styling on homepage"
Example 2: git add
//to add a single file
git add <FILE_NAME>
//to add all changed files
git add -A