git comit code example
Example 1: git commit
git commit -a -m "The Commit message"
Example 2: git commit
git add index.html css/styles.css
git add .
git commit -m "Change titles and styling on homepage"
Example 3: how to commit changes in git command
git commit -a
Example 4: git init
cd /path/to/my/codebase
git init
git add .
git commit -m "my comment"