Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Eariel19088yYou can use a GUI tool to add only portions of your changes and make smaller commits. If you use Git or Mercurial, SourceTree is a good option. Just make sure it's compiling after each commit. Select changes, commit, stash all the rest, compile (if it doesn't, pop the stash, fix it, then commit again with ammend and start again) and push.
-
I do git commit -a
And then each file that was changed I give an explanation about what was changed in it. -
willol13898yGit add -p to select interactively the parts of each fines you want to add to the commit !
I always end up being too busy working on a new features that I forget git commiting every feature so I always end up comitting something like "lots of new stuff idk lol"
undefined