While trying to sort out bugs with apps on Heroku, I usually end up with a bunch of Git commits related to the bug fixing process, as I need to commit the updates in order to push to Heroku. Are there any clever ways of cleaning up those commits prior to pushing to the main shared repo for the project?
feedback
|
|
Create a new branch when you start debugging ( Then when you've fixed the problem, you can squash your debugging changes into a single commit and merge them back into master:
There are lots of other ways to go about doing this, it all comes down to which you find the most logical. | |||||||||||||
feedback
|
|
You can do a | |||
feedback
|
|
You don't really want to clean up these commits. What you want to do instead is encapsulate them in a merge commit:
| |||
feedback
|