-
Notifications
You must be signed in to change notification settings - Fork 1
/
.tigrc
239 lines (154 loc) · 6.91 KB
/
.tigrc
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# source from https://qiita.com/sfus/items/063797a1dd8fdc7d032f
# main view の左端にコミットIDを表示する
set main-view = id date author:email-user commit-title:graph=yes,refs=yes
# blame view の行数表示をON、intervalを1に
set blame-view = date:default author:email-user id:yes,color line-number:yes,interval=1 text
# Pager系の行数表示をON、intervalを1に (default: line-number:no,interval=5)
set pager-view = line-number:yes,interval=1 text
set stage-view = line-number:yes,interval=1 text
set log-view = line-number:yes,interval=1 text
set blob-view = line-number:yes,interval=1 text
set diff-view = line-number:yes,interval=1 text:yes,commit-title-overflow=no
# 行数表示をON
set blob-view-line-number = yes
set blame-view-line-number = yes
# # 画面を垂直方向に分割する
# set vertical-split = yes
#
# 横分割に強制する
# set vertical-split = no
#
# # デフォルト値
# set vertical-split = auto
# utf-8 文字で画面描画する (~でトグル)
set line-graphics = utf-8
# タブサイズ
set tab-size = 4
# # 空白無視
# set ignore-space = all
# 空白無視 (status-view では表示するが diff-view では無視する) (W でトグル)
set ignore-space = at-eol
# 検索時に大文字小文字を無視する (default: false)
set ignore-case = true
# 水平分割したウィンドウの下画面サイズを % で指定(行数指定も可)
set split-view-height = 80%
# マージ diff を表示する
set diff-options = -m --first-parent
# マウスを有効にする
set mouse = true
# '+行数' の形で Editor に行番号を引数として渡すか
set editor-line-number = yes
# リフレッシュするタイミング
set refresh-mode = auto
#set refresh-mode = after-command
#set refresh-mode = periodic
#set refresh-interval = 1
# 差分表示に diff-highlight を使う (要 tig 2.2.1 以降. diff-highlight が $PATH にあること)
set diff-highlight = true
# カラー設定
# diff-view で境界が見やすくなるように変更
color diff-header default magenta
color diff-chunk black white
# g をファイル先頭に移動に変更、 view-grep を再割当て
bind generic g move-first-line
bind generic E view-grep
# G でファイル末尾に移動 (default: :toggle commit-title-graph)
bind generic G move-last-line
bind main G move-last-line
# Alt-g で :toggle commit-title-graph
bind main <Esc>g :toggle commit-title-graph
# n / p を上下移動に割り当て (default: find-next / view-pager)
# bind generic n move-down
# bind generic p move-up
# F で fetch (default: :toggle file-name / :toggle commit-title-refs)
bind generic F ?git fetch %(remote)
bind main F ?git fetch %(remote)
# Alt-f で :toggle file-name / :toggle commit-title-refs
bind generic <Esc>f :toggle file-name
bind main <Esc>f :toggle commit-title-refs
# U で pull
bind generic U ?git pull %(remote)
# Alt-u で該当ブランチを更新
bind main <Esc>u ?sh -c "git checkout %(branch) && git pull %(remote) --ff-only && git checkout -"
bind diff <Esc>u ?sh -c "git checkout %(branch) && git pull %(remote) --ff-only && git checkout -"
bind refs <Esc>u ?sh -c "git checkout %(branch) && git pull %(remote) --ff-only && git checkout -"
# P で remote への push
bind generic P ?git push -u %(remote) %(repo:head)
# C で commit (refs での C は checkout, main での C は cherry-pick だが上書きする)
bind generic C !git commit
# bind refs C !git commit
bind main C !git commit
# Alt-c で commit --allow-empty
bind generic <Esc>c !git commit --allow-empty
# + で commit --amend
bind generic + !git commit --amend --allow-empty
# L で reflog
bind generic L !sh -c "git reflog --pretty=raw | tig --pretty=raw"
# _ で指定 reflog 番号にリセット
bind generic _ ?git reset --hard HEAD@{"%(prompt Enter HEAD@{} number: )"}
# ^ で reset --soft
bind generic ^ ?git reset --soft HEAD^
# . で HEAD との diff
bind main . !sh -c "git diff %(commit) | tig"
bind diff . !sh -c "git diff %(commit) | tig"
bind refs . !sh -c "git diff %(branch) | tig"
# Alt-. で指定 commit ID との diff
bind main <Esc>. ?sh -c "git diff %(commit)..%(prompt Enter commit ID: ) | tig"
bind diff <Esc>. ?sh -c "git diff %(commit)..%(prompt Enter commit ID: ) | tig"
bind refs <Esc>. ?sh -c "git diff %(branch)..%(prompt Enter branch name: ) | tig"
# S で stash save
bind generic S ?git stash save "%(prompt Enter stash comment: )"
# Y で stash pop
bind diff Y ?git stash pop %(stash)
bind stash Y ?git stash pop %(stash)
# Alt-y で stash applye
bind diff <Esc>y ?git stash apply %(stash)
bind stash <Esc>y ?git stash apply %(stash)
# H で reset --hard
bind main H ?git reset --hard %(commit)
bind diff H ?git reset --hard %(commit)
bind refs H ?git reset --hard %(branch)
# H で reset --hard HEAD (status-view)
bind status H ?git reset --hard HEAD
# ! で revert
bind main ! ?git revert %(commit)
# D でブランチを削除 (マージ済みブランチのみ. 強制削除(branch -D) は `!`) (refs-view)
bind refs D ?git branch -d %(branch)
# D でトラッキングされていないファイルを削除 (status-view)
bind status D ?git clean -d -f -- %(file)
# D で stash を削除 (`!` と同じ) (stash-view)
bind stash D ?git stash drop %(stash)
# D でファイルを削除 (tree-view)
bind tree D ?git rm %(file)
# x でトラッキングされていないファイルをすべて削除
bind main x ?git clean -d -f
bind status x ?git clean -d -f
# x でマージ済みローカルブランチをすべて削除 (master/develop 除く)
bind refs x ?sh -c "git branch --merged | grep -vE '^\\*|master$|develop$' | xargs -I % git branch -d %"
## 以下、Shift付きでブランチ指定、Alt付きでコミットID指定のコマンド
# = で checkout
bind main = ?git checkout %(commit)
bind refs = ?git checkout %(branch)
bind main <Esc>= ?git checkout %(branch)
# - で直前のブランチに戻る (checkout -)
bind generic - ?git checkout -
# M で merge
bind main M ?git merge %(branch)
bind diff M ?git merge %(branch)
bind refs M ?git merge %(branch)
bind main <Esc>m ?git merge %(commit)
bind diff <Esc>m ?git merge %(commit)
# R で rebase
bind main R ?git rebase %(branch)
bind diff R ?git rebase %(branch)
bind refs R ?git rebase %(branch)
bind main <Esc>r ?git rebase %(commit)
bind diff <Esc>r ?git rebase %(commit)
# I で rebase -i
bind main I ?git rebase -i %(branch)
bind diff I ?git rebase -i %(branch)
bind refs I ?git rebase -i %(branch)
bind main <Esc>i ?git rebase -i %(commit)
bind diff <Esc>i ?git rebase -i %(commit)
#automatic wrap long lines
set wrap-lines = yes