git check code example
Example 1: github show files changed git log
git log --name-only
Example 2: git checkout
git checkout -b origin/branch-name
git checkout -b branch-name
Example 3: 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>