This gist presents a methodology of working on a task on feature branch using a TODO file as a support.
Here is a possible scenario:
- Turn on verbose commits option:
git config --local commit.verbose true
. It's really awesome! - Take a task from your project management tool.
cd
to repo.- Checkout to a main branch on the repo:
git checkout master
. - Pull the most recent changes from origin:
git pull origin master
.