You've joined the CommitCafe team as a junior dev. Your colleague is also working on the codebase today ...
- Clone the repository
- Create a new branch:
2a.
git checkout -b feature/brewORgit switch -c feature/brew2b.git push -u origin feature/brew(push your branch & set the upstream) - Implement the
brew()method and/or other TODOs. - Commit your changes.
- Push your branch (Wait 1 minute or so before the next task)
- Pull the
mainbranchgit pull origin main(OR fetch + merge) - Merge your branch into
main:git merge main - Inspect what happened! ...