git status commands code example
Example 1: git status
git status # To see all changed files
git add -A # add all changed files
git commit -m 'Message'
git push origin <branch-name>
Example 2: git status
//to check how many files contains changes
git status