Last Updated: November 19, 2020
·
49.4K
· mcansky

Git is cheap !

TL;DR : committing and branching is cheap with git so stop worrying about it : split your features into small bricks and commit early and often.

Git is a wonderful tool, yet many of us use it like a glorified svn. Git is not only about features but also about flows and we should pay more attention to that when learning or teaching about git.

Git is a distributed version control software, with git it's cheap to create commits or branches :
- committing/branching does not require an access to a central server
- committing/branching does not directly impact other developers
- committing/branching take few seconds to happen
- merging and diffing commits/branches is very fast

As I told a young developer recently : stop worrying about finishing this or that before committing, just commit as soon as you pass a step. Of course it's nice to finish a whole feature before committing or making a new branch but it will make this far more difficult at medium and long term when other developers (or yourself) will look back, make some diffs, patches, proposes changes etc ...

So we arrive at the important point : commit early, branch often.

Young or messy developers (like me) tend to rush into writing code to implement feature X or Y; this is a very bad habit. It's ok to do so if you just want to test and verify an idea but you should just dump that code once you are done with that test.

Once you know where to go you need to break down the feature you want to add into very little bricks. Each brick needs to be the smallest possible : one or two (unit or integration) tests to add to describe the brick, and the corresponding one or two methods to write (or change) to make them pass.
Group the bricks by dependence from one to another, if you have 10 bricks to do, with about 10 to 20 tests and methods to write and all them are "dependent" upon one another you might have to go back to the white board and think again.

Grouping two or three bricks is probably ok, ten is not, ten is starting to be a lot of code to wrap the mind around.

Each group of bricks will become a topic branch, since each group does not depend on another one you can branch of master or whatever pre production branch your team is working on.
This will make the development process faster : you can push topic branches early since they are smaller, your fellow developers can check them out earlier, comment them, and accept the pull requests earlier too. Because they are small it takes them less than a pomodoro to check each one, so it does not interrupt too much their own rhythm.

You might not end the day with the whole feature in the main branch but already part of it is in, it's been commented, improved and approved by others and possibly, it triggered some refactoring in other developers work.

The point behind all this is to get code shipped fast. In 2012, by 15th of August GitHub has had 2300+ production deploys (since 1st January), with an average of 10 per day ! That's the way to go : for each deploy there was probably several pull requests and merges involved upstream so you can imagine the rhythm it implies.

Short commits are easier to read and wrap the mind around, so are small topic branches (5 commits or less). It helps to get code checked, commented, improved and shipped fast.

Remember : Smaller commits and branches also imply less complexity in the code which means less bugs.

commit early, branch often.

To get a broader view about code quality you should check this talk by Brandon Keepers (GitHub) : https://speakerdeck.com/u/bkeepers/p/why-our-code-smells.

Related protips:

Force a "git stash pop"

6 Responses
Add your response

I agree, commit more and often. If you need to, you can always rebase into a larger, cleaner commit message and aggregate the smaller step by step commits.

over 1 year ago ·

I recommend git flow https://github.com/nvie/gitflow

over 1 year ago ·

I like plastic's visual merge tool, they also support github, for me it took all the pain out of merges (auto or manual) http://codicesoftware.blogspot.com/2012/04/using-plastic-scm-as-github-client.html

over 1 year ago ·

something someone pointed out on the YC / HN thread : there is a point missing in this post : commits rebase before pushing. I'll try to cover that in another post.
in short : once you got your tests passing and BEFORE publishing that branch you can (and should?) rebase some of the commits together (rebase -i) to get a slimmer history and clearer diff history.

in the end you might want to see it that way :
1. branch
2. write tests
3. write code
4. pass tests
5. commit
6. repeat 2 to 5 until group of bricks is done
7. rebase -i commits that need such attention
8. push to your public repository

the git flow link is a must too, thanks for the feedback, please keep sending more !

over 1 year ago ·

To be honest, I think this is more of a behavior observed among people who already have had experience with Central / Single Repository Version Control Systems like Subversion - they tend to carry this behavior to git. People like me who are still learning the ins and outs of git, commit, branch, merge on a regular basis - its fun and it's a practice in itself. Since I have never experienced other version control managements, I do not hesitate or exercise caution with my commits and branches. So, its simple - just erase the knowledge of other VCMs before starting on git.

over 1 year ago ·

@callmekatootie : yes I agree on this, but a lot of people new to VCMs are trained by people who have experience on other VCMs so they tend to get those bad habits (been there, done that, seen that too).

Alas, forgetting past experience is not just like pressing a button, I wish it was that simple ;)

over 1 year ago ·