I have suffered from this in the past, and I micromanage my 'bad' good habit.
Basically, I do the following:
- I have two separate instances of our source tree at any given time.
- If I have a massive refactor that's not really top priority, I hack away at it in the second branch.
- I'll then keep working away in my first branch, and just maintain the second branch, doing little tests as I think about it to make sure I haven't broken anything.
- I'll then check it in once I'm confident, and I can time it with a slow-down in our production cycle (i.e., don't check in right before milestone!).
In all honesty, that 'major' refactoring never really happens often -- usually if I need to do that, it's already been tasked anyhow. Still, the few times I've done that, it's come in handy. Ideal if you can do a branch for it, and just keep integrating changes.
For the smaller stuff, I'll often keep those changes local in my 'main' branch, and run with them locally for a while. The moment that anything I'm working on touches those files, I then check the whole change in -- our process currently includes a 'buddy check' system before check-ins, so usually it's stuff that'd clear peer review anyhow.
Anyways. Might be more of a brain dump than you cared for, but hopefully it helps.