I just realized that I prefer writing TODO notes directly in to the latest commit instead of issue tracker, for example:
TODO:
- Remove console.log
- Check that XY works
- ...
For example if I have to switch to another job, finishing it and coming back to this branch I can see what had I left undone, fixing it, commit --amend
, removing the TODO statements from the commit message.
Is this a good habit or should I force myself to use the issue tracker and write every little notes there (even if others can see the issue)?