Refactoring Spikes as a Learning Tool and How a Scheduled Git Reset Can Help
To learn how complex your code base really is and how much effort a particular refactoring might require compared to the initial expectations, follow these steps:
Notice that if you do any larger-scale refactoring, it might be pretty wise to apply the Mikado method to help you keep track of where you are going and where you are while also keeping your buildable.
When I get to try this out I might write about my experiences here as well.
- Schedule git reset --hard; git clean -fd to run in 1 hour (e.g. via cron)
- Do the refactoring
- "WT*?! All my changes disappeared?!" - this experience indicates the end of the refactoring :-)
- Go for a walk or something and think about what you have learned about the code, its complexity, the refactoring
- Repeat regularly, f. ex. once every week or two - thus you'll improve your ability to direct the refactoring so that you learn as much as possible during the short time
Notice that if you do any larger-scale refactoring, it might be pretty wise to apply the Mikado method to help you keep track of where you are going and where you are while also keeping your buildable.
When I get to try this out I might write about my experiences here as well.