Git in Action #12
At any stage we can create a new branch. With no parameter a branch will point to the current commit, meaning whatever we change in new branch it will be compared with that commit.
git branch new-branch
The command above will create new branch named ...
simplekit.hashnode.dev1 min read