1GIT-BUG(1) Git Extras GIT-BUG(1)
2
3
4
6 git-bug - Create bug branch
7
9 git-bug [-r|--remote [remote_name]] [finish] <name>
10
12 Create the given bug branch
13
15 <-r|--remote [remote_name]>
16
17 Setup a remote tracking branch using remote_name. If remote_name is not
18 supplied, use origin by default.
19
20 <finish>
21
22 Merge and delete the bug branch.
23
24 <-r
25
26 <name>
27
28 The name of the bug branch.
29
31 $ git bug bug-123456
32 $ git commit -m "Some changes"
33 $ git checkout master
34 $ git bug finish bug-123456
35
36 $ git bug -r 12345
37
39 Written by Jesús Espino <jespinog@gmail.com>
40 Modified by Mark Pitman <mark.pitman@gmail.com>
41
43 <https://github.com/tj/git-extras/issues>
44
46 <https://github.com/tj/git-extras>
47
48
49
50 October 2017 GIT-BUG(1)