blob: c8582afd28253f59ddf60ae846d6689eac80e8cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Git tips and tricks
## Setup name and email
git config --global user.name "Name"
git config --global user.email "name@place.com"
## Delete remote branch
git push -d <remote> <branch>
## `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>
|