git init
git pull
git branch <name-of-branch>
git branch
git checkout <name-of-branch>
Make the changes in the code that are related to the new feature.
Check de changes are being tracked by git.
git status
git add -A
git commit -m "commit message"
git branch