Assignments: Commit and Branching - ajorquera/git-workshop GitHub Wiki

commit-branching

Hey, welcome to the first task of this super cool course 🏆.We will show you some of the basics of git. First, we want to known a bit about yourself, so how about you tell us using git 😃

  1. Create a git project adding your name and description about yourself and push it to the branch assignments/commit-branching/myself. We want at least 4 commits telling us your story 📖

  2. Create a feature branch to write some tests called assignments/commit-branching/my-tests. Any test is 🆗

  3. Merge the feature branch into assignments/commit-branching/myself to have the available tests in your project.

  4. There is a branch in the repo to help us to check if you did everything right. It's called assignments/commit-branching/extra-tests. Merge it to assignments/commit-branching/myself. To check that you did an amazing do, the following commands:

npm i
npm test

If there is a problem you will see it on the console.

HAPPY CODING