Assignments: Commit and Branching - ajorquera/git-workshop GitHub Wiki
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 😃
-
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 📖 -
Create a feature branch to write some tests called
assignments/commit-branching/my-tests
. Any test is 🆗 -
Merge the feature branch into
assignments/commit-branching/myself
to have the available tests in your project. -
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 toassignments/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