A repo to practice using git and its commands.
List all hidden files by using the following command
cd directory
ls -la
This allows you to branch out from the original code base and isolate your work from others
To create and immediately switch to a new branch
git checkout -b branchname
To switch between branches
git checkout branchname
Git is fun.