1GIT-CHORE(1) Git Extras GIT-CHORE(1)
2
3
4
6 git-chore - Create chore branch
7
9 git-chore [-r|--remote [remote_name]] [finish] <name>
10
12 Create the given chore 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 chore branch.
23
24 <name>
25
26 The name of the chore branch.
27
29 $ git chore chore-123456
30 $ git commit -m "Some changes"
31 $ git checkout master
32 $ git chore finish chore-123456
33
34 $ git chore -r upstream 123456
35
37 Written by Chris Hall <christopher.k.hall@gmail.com> from bug/fea‐
38 ture/refactor commands originally written by Jesús Espino
39 <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-CHORE(1)