linux commands for github code example
Example 1: github show files changed git log
git log --name-only
Example 2: how to add a branch to a a git repo cli
# Create new local branch
git checkout -b <new-branch>
git log --name-only
# Create new local branch
git checkout -b <new-branch>