git status verbose code example
Example: 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>
git status # To see all changed files
git add -A # add all changed files
git commit -m 'Message'
git push origin <branch-name>