Getting Started
Get Set Up for the Assignment
Using git
Checkout the developer-onboarding-assignment-2-start tag in the assignments repository.
git checkout tags/developer-onboarding-assignment-2-start
This will put git into 'detached HEAD' mode (it will inform you of this).
If you want to create a branch from here to save your work, git will tell you to do the following.
$ git switch -c <your-branch-name>
This way, you have a branch based on the tag you started with and you can create commits on your branch to save your work and still be able to jump through the history.
If you want to combine the two in a single action, execute the following command.
git checkout tags/developer-onboarding-assignment-2-start && git switch -c my-work-from-developer-onboarding-assignment-2-start