Hi, I'm trying to figure out how to handle commit and push for the scenario where you have multiple bugs being fixed, but they don't all address every file being touched.
Clearly, it's ugly to do a single commit where all bugs appear in the log for every file; but is it acceptable to do an individual commit for each file, and then do a single push? The result of doing it that way pushes multiple changesets (same number as however many commits were performed), and the individual file logs are then updated as desired. Is this a proper/acceptable way to handle it? Thanks, John