Git Best Practices
programmerfriend.com
Git Best Practices
1–4 of 4 posts
Re: Git Best Practices
#2Re: Git Best Practices
#3I'm a big fan of atomic committing. "Commit early and commit often," was one of my first lessons I was taught while learning gitiquette. It tends to be a point of contention sometimes when developers get into the nitty gritty of what constitutes enough of a change for a commit, but I personally have always felt like you can never have too many commits. (As long as you write good messages. Without those you're gonna h…
Another dev working on a different code base was blown away on how I was able to reconstruct a requirement change 6 months ago. Just looking at the last 3 commit messages where the file was involved.
Since then I see him writing better commit messages too :) Think it was one of these eye-opener moments for him.
Re: Git Best Practices
#4I'm a big fan of atomic committing. "Commit early and commit often," was one of my first lessons I was taught while learning gitiquette. It tends to be a point of contention sometimes when developers get into the nitty gritty of what constitutes enough of a change for a commit, but I personally have always felt like you can never have too many commits. (As long as you write good messages. Without those you're gonna h…