-
Notifications
You must be signed in to change notification settings - Fork 6
/
git-jump.1
87 lines (68 loc) · 1.51 KB
/
git-jump.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
.TH "git-jump" "1" " "git-jump" ""
Git Branches Helper
.RE
.RS 2
.B Usage:
.RS 2
.TP 2
\fB$\fR git jump <fuzzy branch name>
Switches to the best matching branch.
.LP
.RE
.RS 2
.TP 2
\fB$\fR git jump
Starts interactive interface.
.LP
.RE
.B Interactive Interface:
.RS 2
- Up/Down arrows to navigate the list
.RE
.RS 2
- Enter to switch into a branch
.RE
.RS 2
- Type to search
.RE
.RS 2
- Option+0..9 to quickly jump to a brunch from the list
.RE
.RS 4
Alt+0..9 on Window and Linux
.RE
.B Sub-Commands:
.RS 2
.TP 2
\fB$\fR git jump --list
Shows a plain list of branches without interactive interface. Use it to pipe the list of branches to other tools like "grep".
Shortcut: -l
.LP
.RE
.RS 2
.TP 2
\fB$\fR git jump new <branch name>
Creates a new branch and switches into it.
A proxy to the native "git switch --create", so all the standard options are supported.
See https://git-scm.com/docs/git-switch for the list of options.
.LP
.RE
.RS 2
.TP 2
\fB$\fR git jump delete <branch name> [<branch name>, ...]
Deletes one or multiple branches. Proxy to the native "git branch --delete".
.LP
.RE
.RS 2
.TP 2
\fB$\fR git jump rename <branch name> <new branch name>
Renames local branch. Proxy to the native "git branch --move".
.LP
.RE
.B Support:
.RS 2
Most of the support happens through the GitHub repo https://github.com/mykolaharmash/git-jump.
Please create a new issue if you think something is wrong with git-jump or you'd like to see some new feature.
You can also contact me directly at mykola.harmash@gmail.com.
.RE
.RE