Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6990987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:25:55+00:00 2026-05-27T19:25:55+00:00

I have a large codebase, where almost every single file isn’t aligned properly, has

  • 0

I have a large codebase, where almost every single file isn’t aligned properly, has bad spacing between variables or methods, or just generally ugly code.

I’d like to make it better as I work with it, but fixing things like indentation makes the commit history pretty ugly.

I’m not talking about small indentation issues where a line is one space off, I’m talking about something like

 class Xyz
def foo
end

   def bar
  @something
end
   end

What’s a good way to clean up code like this, while keeping my history relevant? Should I just auto-align everything at once and do one huge commit?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T19:25:56+00:00Added an answer on May 27, 2026 at 7:25 pm

    I would fix all this in a separate (local) branch. Once I’m ready I would make a “squash merge”

    git checkout -b cleanup develop
    # Do some cleanup, do some commits and so on
    git checkout develop
    git merge --squash cleanup 
    git commit -m "My Cleanup"
    git branch -D cleanup
    

    This way I would get a “huge commit” with this changes, but I would not trust any auto-formatter (at least not completely) and I have not to do it on one day, or completely without any commit until merging.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very large codebase (read: thousands of modules) that has code shared
I have a large codebase that targetted Flash 7, with a lot of AS2
I have a large codebase, and I'd like to refactor the package structure so
I have a fairly large codebase that depends on MooTools v1.11 and am about
I have a fairly large PHP codebase (10k files) that I work with using
I have been tasked with porting a large Java codebase to the Android platform.
I have a large codebase, where we need to make a pattern-change in the
I have a large codebase that I've been tasked with porting to 64 bits.
I have a large Javascript codebase to convert to jQuery. The code is structured
I want to replace every instance of int in a very large codebase with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.