diff options
Diffstat (limited to 'git.md')
-rw-r--r-- | git.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -4,3 +4,11 @@ git config --global user.name "Name" git config --global user.email "name@place.com" + +## `git bisect` + + git bisect start + git bisect new + git checkout <some commit a while ago> + git bisect old + git bisect run <command that returns 1 on old, 0 on new> |