63
Modern Git Commands and Features You Should Be Using
(martinheinz.dev)
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
Resources
Rules
Git Logo by Jason Long is licensed under the Creative Commons Attribution 3.0 Unported License.
I love
git bisect
for complex regressions! If I don't immediately know where a bug is, I write a regression test and then bisect to find where it was introduced. Knowing exactly where the bug was introduced and being able to look at the diff almost always speeds up finding the bug.For those who don't know (I assume you do), you can
git bisect run some_command
and git will automatically run git bisect until it finds the falty commit. It's amazing.