after git commit code example
Example 1: git add
//to add a single file
git add <FILE_NAME>
//to add all changed files
git add -A
Example 2: github commit
git commit -m "message"
Example 3: github commit
git config --global user.email "[email protected]"