DEV Community

Jesse Phillips
Jesse Phillips

Posted on

Organizing Work a Personal Story

I've been doing a lot of code reviews, but not so much on the making changes. But my recent code endeavor has me jumping around trying to adjust the quality of the code in a number of different respects. Basically I get to practice what I preach.

I have a number of changes happening in many places not at the same time.

  • logging improvements
  • architecture changes
  • performance improvements
  • bug fixes
  • attempts at bug fixes
  • refactoring

I've been pressing for one gitmoji and a logged issue in the tracking system. All of this sucks because I'm trying to apply the techniques to the different areas of code to keep consistency, which is bringing to light the other changes needed and distracting from the work on consistency.

I don't believe pausing to define the work for later, but I still believe it is beneficial to separate my refactoring from my fix and architecture changes.

This means I have to commit my progress often, I can take a little bit of time to group my change types and make them into individual commits. I can note issue numbers or emoji, but the main point is to get separate commits. Rebase interactive let's me break up a commit I realized later had more than one change type. I also add similar or incomplete changes together.

Some of these changes would be more important than others and so I'll can start to move those to away from the incomplete work or work that could use more intensive review.

I can finalize the commit messages and their associate issue number at the end as I prepare for a merge request. I had started with multiple branches, but due to the unfocused nature of the changes in both branches I decided to go for a single branch while I work out these final merge request details.

Top comments (1)

Collapse
 
jessekphillips profile image
Jesse Phillips

I listed out a number of change types but was not explicit about why it matters.

The key points were, importance of the the changes which will allow me to request to merge bug fixes before architectural changes. I will also be able to get a refactoring reviewed for breaking changes outside the architecture change.

I can also group my logging improvements into one request making for a easier review of all those particular changes worrying less about where that performance improvement was hiding.