Tuesday, July 15, 2008

Using git

Things I like about git over subversion.

1. Branches are easy... no, really easy, just do a branch for every feature. Go ahead, you know you want to. 'git checkout -b coolfeature' It's just that easy.

2. Only check in part of a changed file. 'git add -p' It then prompts you line by line if you want those changes added or not.

3. It's fast!

No comments: