29
enitoni
7y

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"

Comments
  • 9
    Why do you hate your team (and yourself) so much?
  • 4
    You 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.
  • 2
    "Fixed a bunch of stuff" or "Minor changes" are my go-to commit messages :D
  • 2
    I do git commit -a

    And then each file that was changed I give an explanation about what was changed in it.
  • 0
    @tisaconundrum ill try this one, sounds nice.
  • 0
    Not nice
  • 1
    Git add -p to select interactively the parts of each fines you want to add to the commit !
Add Comment