helpline 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +7 -0
- data/Gemfile +9 -0
- data/LICENSE.txt +21 -0
- data/Makefile +44 -0
- data/README.md +8 -0
- data/Rakefile +6 -0
- data/_config.yml +1 -0
- data/curses.rb +106 -0
- data/data.js +273 -0
- data/exe/helpline +248 -0
- data/getdata.rb +94 -0
- data/getglossary.rb +31 -0
- data/glossary.js +8 -0
- data/helpline.css +54 -0
- data/helpline.gemspec +36 -0
- data/helpline.html +18 -0
- data/helpline.js +252 -0
- data/helpline.rb +248 -0
- data/index.html +300 -0
- data/keydef.zsh +14 -0
- data/lib/helpline.rb +5 -0
- data/lib/helpline/version.rb +3 -0
- data/main.js +123 -0
- data/package.json +43 -0
- data/stylesheets/github-light.css +116 -0
- data/stylesheets/normalize.css +424 -0
- data/stylesheets/stylesheet.css +245 -0
- metadata +113 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 267bd0196064dc182896a4e031db4da50a354117d670459f4fd25a8f3fd966b3
|
4
|
+
data.tar.gz: 50b312aa455fe920fcbb3ebbc883730dcb61776d1ddf31e696134be0c604fc40
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7d1319a55f1202a129871688f9132ec099cf8b7ad1c4a4002f6c566cea53d9db005d2b96ca2d870a947c364fea5f58304026c52f1bf9e0d88a1f529ebc27f932
|
7
|
+
data.tar.gz: 3cd64a1e71c308f4358c6ebee71101e05345c017bfcefc617bfdba92cff75213534c73cd7d42dc9702e7adc6f28359c31a62ca523880cec5cf8b4590239985b1
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Toshiyuki Masui
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/Makefile
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
.PHONY: data.js glossary.js
|
2
|
+
|
3
|
+
run: browserify
|
4
|
+
npm start .
|
5
|
+
|
6
|
+
browserify:
|
7
|
+
browserify helpline.js -o helpline_browserify.js
|
8
|
+
|
9
|
+
build-mac: install browserify
|
10
|
+
npm run build
|
11
|
+
cp -r build/mac/HelpLine.app /Applications
|
12
|
+
upload:
|
13
|
+
scp build/HelpLine-0.0.1.dmg pitecan.com:/www/www.pitecan.com/tmp/HelpLine.dmg
|
14
|
+
|
15
|
+
build-chromebook: browserify install
|
16
|
+
npm run build
|
17
|
+
|
18
|
+
#dmg: build-mac
|
19
|
+
# -/bin/rm -f HelpLine.dmg
|
20
|
+
# hdiutil create -srcfolder build/mac/HelpLine.app -volname HelpLine HelpLine.dmg
|
21
|
+
|
22
|
+
#install: npm browserify cursorpos electron
|
23
|
+
install:
|
24
|
+
npm install
|
25
|
+
|
26
|
+
electron:
|
27
|
+
npm install electron
|
28
|
+
|
29
|
+
#
|
30
|
+
# Scrapboxからデータ更新
|
31
|
+
#
|
32
|
+
update: data.js glossary.js
|
33
|
+
data.js:
|
34
|
+
ruby getdata.rb > data.js
|
35
|
+
glossary.js:
|
36
|
+
ruby getglossary.rb > glossary.js
|
37
|
+
|
38
|
+
clean:
|
39
|
+
-/bin/rm -r -f node_modules
|
40
|
+
-/bin/rm -r -f build
|
41
|
+
-/bin/rm -f HelpLine.dmg
|
42
|
+
|
43
|
+
all: update build-mac
|
44
|
+
|
data/README.md
ADDED
data/Rakefile
ADDED
data/_config.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
theme: jekyll-theme-cayman
|
data/curses.rb
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
# ESC [ Pl A
|
4
|
+
# カーソルをPl行上へ移動
|
5
|
+
# ESC [ Pl B
|
6
|
+
# カーソルをPl行下へ移動
|
7
|
+
# ESC [ Pc C
|
8
|
+
# カーソルをPc桁右へ移動
|
9
|
+
# ESC [ Pc D
|
10
|
+
# カーソルをPc桁左へ移動
|
11
|
+
# ESC E
|
12
|
+
# 改行、カーソルを次行の最初へ移動
|
13
|
+
|
14
|
+
# \e[nE n行下の先頭に移動
|
15
|
+
# \e[nF n行上の先頭に移動
|
16
|
+
# \e[nG 現在位置と関係なく左からnの場所に移動
|
17
|
+
|
18
|
+
|
19
|
+
class Curses
|
20
|
+
@x = 0
|
21
|
+
@y = 0
|
22
|
+
|
23
|
+
def Curses.up(n = 1)
|
24
|
+
STDOUT.print "\e[#{n}A"
|
25
|
+
@y -= n
|
26
|
+
end
|
27
|
+
|
28
|
+
def Curses.down(n = 1)
|
29
|
+
STDOUT.print "\e[#{n}B"
|
30
|
+
@y += n
|
31
|
+
end
|
32
|
+
|
33
|
+
def Curses.right(n = 1)
|
34
|
+
n = 1 unless n
|
35
|
+
STDOUT.print "\e[#{n}C"
|
36
|
+
@x += n
|
37
|
+
end
|
38
|
+
|
39
|
+
def Curses.left(n = 1)
|
40
|
+
STDOUT.print "\e[#{n}D"
|
41
|
+
@x -= n
|
42
|
+
end
|
43
|
+
|
44
|
+
def Curses.tol(n = 0) # 行頭からn文字目に移動
|
45
|
+
STDOUT.print "\e[#{n+1}G"
|
46
|
+
@x = n
|
47
|
+
end
|
48
|
+
|
49
|
+
#\e[nJ 画面消去
|
50
|
+
#0(or省略)・・・カーソルより後ろを消去
|
51
|
+
#1・・・カーソルより前を消去
|
52
|
+
#2・・・画面全体を消去
|
53
|
+
|
54
|
+
def Curses.clearline # カーソルより後を消去
|
55
|
+
STDOUT.print "\e[J"
|
56
|
+
end
|
57
|
+
|
58
|
+
def Curses.move(yy,xx)
|
59
|
+
if xx > @x
|
60
|
+
Curses.right(xx-@x)
|
61
|
+
end
|
62
|
+
if xx < @x
|
63
|
+
Curses.left(@x - xx)
|
64
|
+
end
|
65
|
+
if yy > @y
|
66
|
+
Curses.down(yy - @y)
|
67
|
+
end
|
68
|
+
if yy < @y
|
69
|
+
Curses.up(@y - yy)
|
70
|
+
end
|
71
|
+
@y = yy
|
72
|
+
@x = xx
|
73
|
+
end
|
74
|
+
|
75
|
+
def Curses.dump
|
76
|
+
puts @x
|
77
|
+
puts @y
|
78
|
+
end
|
79
|
+
|
80
|
+
def Curses.print(s)
|
81
|
+
STDOUT.print(s)
|
82
|
+
# @x += s.length
|
83
|
+
@x += s.encode("EUC-JP").bytesize
|
84
|
+
end
|
85
|
+
|
86
|
+
# \e[0m 指定をリセットし未指定状態に戻す(0は省略可)
|
87
|
+
# \e[1m 太字
|
88
|
+
# \e[2m 薄く表示
|
89
|
+
# \e[3m イタリック
|
90
|
+
# \e[4m アンダーライン
|
91
|
+
# \e[5m ブリンク
|
92
|
+
# \e[6m 高速ブリンク
|
93
|
+
# \e[7m 文字色と背景色の反転
|
94
|
+
# \e[8m 表示を隠す(コピペ可能)
|
95
|
+
# \e[9m 取り消し
|
96
|
+
|
97
|
+
def Curses.print_inverse(s)
|
98
|
+
print "\e[0m"
|
99
|
+
print "\e[7m"
|
100
|
+
print s
|
101
|
+
print "\e[0m"
|
102
|
+
@x += s.length
|
103
|
+
end
|
104
|
+
|
105
|
+
end
|
106
|
+
|
data/data.js
ADDED
@@ -0,0 +1,273 @@
|
|
1
|
+
var data =
|
2
|
+
{
|
3
|
+
"codes": [],
|
4
|
+
"defs": [
|
5
|
+
"$ Gyazoで#{params}を検索する {3}",
|
6
|
+
"% open https://gyazo.com/search/'#{$1}' {3}",
|
7
|
+
"$ Amazonのパスワードを計算 {4}",
|
8
|
+
"% open http://pitecan.com/p/Amazon_masui@pitecan.com.html {4}",
|
9
|
+
"$ 今いる場所の地図を開く {5}",
|
10
|
+
"$ 現在地の地図を見る {5}",
|
11
|
+
"$ 自分がどこにいるのか調べる {5}",
|
12
|
+
"$ 自分の場所を調べる {5}",
|
13
|
+
"% whereami {5}",
|
14
|
+
"$ Amazon新刊漫画ランキング {6}",
|
15
|
+
"% open https://www.amazon.co.jp/gp/new-releases/books/2501045051/ {6}",
|
16
|
+
"$ Compare (#{files}) with the one from (#{numbers}) minutes ago {8}",
|
17
|
+
"$ 「(#{files})」ファイルを(#{numbers})分前の(もの|バージョン)と#{compare} {8}",
|
18
|
+
"$ 「(#{files})」ファイルが(#{numbers})分前から(変化した|変わった)ところを(#{display}) {8}",
|
19
|
+
"% git diff HEAD '@{#{$2} minutes ago}' #{$1} {8}",
|
20
|
+
"$ (#{numbers})分前の「(#{files})」ファイルと現在の(もの|バージョン)を#{compare} {8}",
|
21
|
+
"% git diff HEAD '@{#{$1} minutes ago}' #{$2} {8}",
|
22
|
+
"$ (#{numbers})日前の「(#{files})」ファイルと現在のものを#{compare} {8}",
|
23
|
+
"% git diff HEAD '@{#{$1} days ago}' #{$2} {8}",
|
24
|
+
"$ 現在の「(#{files})」ファイルを(#{numbers})日前のものを#{compare} {8}",
|
25
|
+
"% git diff HEAD '@{#{$2} days ago}' #{$1} {8}",
|
26
|
+
"$ (1つ|ひとつ)前のバージョンの(#{files})と#{compare} {8}",
|
27
|
+
"$ (1つ|ひとつ)前のバージョンの(#{files})からの変更点 {8}",
|
28
|
+
"% git diff $(git rev-list -n 1 HEAD -- #{$2})^ -- #{$2} {8}",
|
29
|
+
"$ (#{files})を(1つ|ひとつ)前のバージョンと#{compare} {8}",
|
30
|
+
"$ (#{files})の(1つ|ひとつ)前のバージョンからの変更点 {8}",
|
31
|
+
"% git diff $(git rev-list -n 1 HEAD -- #{$1})^ -- #{$1} {8}",
|
32
|
+
"$ (#{files})の最新版の変更点を(#{display}) {8}",
|
33
|
+
"$ 最新の(#{files})の#{change}個所は? {8}",
|
34
|
+
"$ (#{files})は最後にどこを変えた? {8}",
|
35
|
+
"$ (#{files})の(一番新しい|最新の)#{change}は? {8}",
|
36
|
+
"% git diff $(git rev-list -n 1 HEAD -- #{$1})^ -- #{$1} {8}",
|
37
|
+
"$ (2つ|ふたつ)前のバージョンの(#{files})と#{compare} {8}",
|
38
|
+
"$ (2つ|ふたつ)前のバージョンの(#{files})からの変更点を(#{display}) {8}",
|
39
|
+
"% git diff $(git rev-list -n 2 HEAD -- #{$2})^^ -- #{$2} {8}",
|
40
|
+
"$ (#{files})を(2つ|ふたつ)前のバージョンと#{compare} {8}",
|
41
|
+
"$ (#{files})の(2つ|ふたつ)前のバージョンのからの#{change}を(#{display}) {8}",
|
42
|
+
"% git diff $(git rev-list -n 2 HEAD -- #{$1})^^ -- #{$1} {8}",
|
43
|
+
"$ 湘南台のラーメン情報 {9}",
|
44
|
+
"% open https://scrapbox.io/SFCHelp/ラーメン {9}",
|
45
|
+
"$ ASCIIコードを調べる {10}",
|
46
|
+
"% open https://www.k-cube.co.jp/wakaba/server/ascii_code.html {10}",
|
47
|
+
"$ ブランチ(のリスト)?を(#{display}) {11}",
|
48
|
+
"% git branch {11}",
|
49
|
+
"$ (#{params})というブランチを作成する {11}",
|
50
|
+
"% git branch #{$1} {11}",
|
51
|
+
"$ (#{branches})というブランチを(#{delete}) {11}",
|
52
|
+
"% git branch -d #{$1} {11}",
|
53
|
+
"$ ファイルを大きい(順に|順番で)表示する {13}",
|
54
|
+
"$ ファイルを大きさの順に表示する {13}",
|
55
|
+
"$ サイズの順に表示する {13}",
|
56
|
+
"% git ls-files | xargs du -s | sort -r -n {13}",
|
57
|
+
"$ ブランチを#{display} {14}",
|
58
|
+
"% git branch {14}",
|
59
|
+
"$ 「(#{params})」というブランチを作成する {14}",
|
60
|
+
"% git branch #{$1} {14}",
|
61
|
+
"$ 「(#{params})」というブランチを#{delete} {14}",
|
62
|
+
"% git branch -d #{$1} {14}",
|
63
|
+
"$ レポジトリの中身を(確認する|見る|調べる) {15}",
|
64
|
+
"% ls .git {15}",
|
65
|
+
"$ リモートレポジトリを確認する {15}",
|
66
|
+
"% git remote -v {15}",
|
67
|
+
"$ 新しい順にファイルをソートする {16}",
|
68
|
+
"% ls -l -t {16}",
|
69
|
+
"$ 大きさの順にファイルをソートする {16}",
|
70
|
+
"% ls -l | sort -r -k 5 {16}",
|
71
|
+
"$ 鎌倉の天気 {17}",
|
72
|
+
"% open https://tenki.jp/forecast/3/17/4610/14204/3hours.html {17}",
|
73
|
+
"$ ファイルの#{change}のランキングを#{display} {22}",
|
74
|
+
"$ (よく|頻繁に)#{change}(されてる|されている)ファイルを#{display} {22}",
|
75
|
+
"$ ファイルの#{change}頻度を#{display} {22}",
|
76
|
+
"$ ファイルを#{change}頻度順にソート {22}",
|
77
|
+
"% git log --name-only --pretty=\"format:\" | grep -ve \"^$\" | sort | uniq -c | sort -r {22}",
|
78
|
+
"$ ファイルを新しい順に(リスト|表示)する {27}",
|
79
|
+
"$ ファイルを新しさ順に(リスト|表示)する {27}",
|
80
|
+
"$ 新しいファイルから順番に(リスト|表示)する {27}",
|
81
|
+
"% git ls-files | xargs ls -l -t {27}",
|
82
|
+
"$ ファイル「(#{files})」の編集履歴を完全に(#{delete})がワーキングツリーは残す {28}",
|
83
|
+
"% git filter-branch -f --index-filter 'git rm --cached --ignore-unmatch #{$1}' HEAD {28}",
|
84
|
+
"$ ファイル「(#{files})」の編集履歴を完全に(#{delete}) {28}",
|
85
|
+
"% git filter-branch -f --index-filter 'git rm --ignore-unmatch #{$1}' HEAD {28}",
|
86
|
+
"$ 編集履歴をGitHubに反映させる {28}",
|
87
|
+
"% git push origin --force --all {28}",
|
88
|
+
"$ ファイル「(#{files})」の(#{numbers})分前からの(#{change})履歴を(#{display}) {29}",
|
89
|
+
"% git log --since \"#{$2} minutes ago\" #{$1} {29}",
|
90
|
+
"$ (#{numbers})分前からのファイル「(#{files})」の(#{change})履歴を(#{display}) {29}",
|
91
|
+
"% git log --since \"#{$1} minutes ago\" #{$2} {29}",
|
92
|
+
"$ ファイル「(#{files})」の(#{numbers})分前からの(#{change})を(#{display}) {29}",
|
93
|
+
"% git diff HEAD \"@{#{$2} minutes ago}\" #{$1} {29}",
|
94
|
+
"$ (#{numbers})分前からのファイル「(#{files})」の(#{change})を(#{display}) {29}",
|
95
|
+
"% git diff HEAD \"@{#{$1} minutes ago}\" #{$2} {29}",
|
96
|
+
"$ ファイル「(#{files})」の(#{numbers})時間前からの(#{change})履歴を(#{display}) {29}",
|
97
|
+
"% git log --since \"#{$2} hours ago\" #{$1} {29}",
|
98
|
+
"$ (#{numbers})時間前からのファイル「(#{files})」の(#{change})履歴を(#{display}) {29}",
|
99
|
+
"% git log --since \"#{$1} hours ago\" #{$2} {29}",
|
100
|
+
"$ ファイル「(#{files})」の(#{numbers})時間前からの(#{change})を(#{display}) {29}",
|
101
|
+
"% git diff HEAD \"@{#{$2} hours ago}\" #{$1} {29}",
|
102
|
+
"$ (#{numbers})時間前からのファイル「(#{files})」の(#{change})を(#{display}) {29}",
|
103
|
+
"% git diff HEAD \"@{#{$1} hours ago}\" #{$2} {29}",
|
104
|
+
"$ ファイル「(#{files})」の(#{numbers})日前からの(#{change})履歴を(#{display}) {29}",
|
105
|
+
"% git log --since \"#{$2} days ago\" #{$1} {29}",
|
106
|
+
"$ (#{numbers})日前からのファイル「(#{files})」の(#{change})履歴を(#{display}) {29}",
|
107
|
+
"% git log --since \"#{$1} days ago\" #{$2} {29}",
|
108
|
+
"$ ファイル「(#{files})」の(#{numbers})日前からの(#{change})を(#{display}) {29}",
|
109
|
+
"% git diff HEAD \"@{#{$2} days ago}\" #{$1} {29}",
|
110
|
+
"$ (#{numbers})日前からのファイル「(#{files})」の(#{change})を(#{display}) {29}",
|
111
|
+
"% git diff HEAD \"@{#{$1} days ago}\" #{$2} {29}",
|
112
|
+
"$ ブランチのリストを更新日時順に表示する {30}",
|
113
|
+
"% git branch --sort=committerdate {30}",
|
114
|
+
"$ 直前のコミットを取り消す {32}",
|
115
|
+
"% git reset --soft HEAD^ {32}",
|
116
|
+
"$ ひとつ前のコミットの状態に完全に戻す {32}",
|
117
|
+
"% git reset --hard HEAD^ {32}",
|
118
|
+
"$ コミット後の変更を全部消す {32}",
|
119
|
+
"% git reset --hard HEAD {32}",
|
120
|
+
"$ すごい昔の状態で動作を確認したい {32}",
|
121
|
+
"% git reset --hard 昔のコミットのハッシュ値 {32}",
|
122
|
+
"$ 直前のリセットをなかったことにする {32}",
|
123
|
+
"% git reset --hard ORIG_HEAD {32}",
|
124
|
+
"$ 過去のあらゆる操作履歴を見る {33}",
|
125
|
+
"% git reflog {33}",
|
126
|
+
"$ 過去のコミット履歴を見る {33}",
|
127
|
+
"% git log {33}",
|
128
|
+
"$ 現在の編集状態を(#{display}) {39}",
|
129
|
+
"$ 編集中のファイルを(#{display}) {39}",
|
130
|
+
"% git status {39}",
|
131
|
+
"$ (#{numbers})個前までのコミットをまとめる {43}",
|
132
|
+
"% git rebase -i HEAD~#{$1} {43}",
|
133
|
+
"$ ひとつ前の「(#{files})」ファイルを(#{display}) {44}",
|
134
|
+
"$ 1バージョン前の「(#{files})」ファイルを(#{display}) {44}",
|
135
|
+
"% git show HEAD~:#{$1} {44}",
|
136
|
+
"$ ふたつ前の「(#{files})」ファイルを(#{display}) {44}",
|
137
|
+
"$ 2バージョン前の「(#{files})」ファイルを(#{display}) {44}",
|
138
|
+
"% git show HEAD~~:#{$1} {44}",
|
139
|
+
"$ (#{numbers})個前の「(#{files})」ファイルを(#{display}) {44}",
|
140
|
+
"$ (#{numbers})バージョン前の「(#{files})」ファイルを(#{display}) {44}",
|
141
|
+
"% git show HEAD~#{$1}:#{$2} {44}",
|
142
|
+
"$ (#{numbers})分前の「(#{files})」ファイルを(#{display}) {44}",
|
143
|
+
"% git show '@{#{$1} minutes ago}':#{$2} {44}",
|
144
|
+
"$ (#{numbers})時間前の「(#{files})」ファイルを(#{display}) {44}",
|
145
|
+
"% git show '@{#{$1} hours ago}':#{$2} {44}",
|
146
|
+
"$ (#{numbers})日前の「(#{files})」ファイルを(#{display}) {44}",
|
147
|
+
"% git show '@{#{$1} days ago}':#{$2} {44}",
|
148
|
+
"$ 昨日の「(#{files})」ファイルを(#{display}) {44}",
|
149
|
+
"% git show @{yesterday}:#{$1} {44}",
|
150
|
+
"$ (#{numbers})分前(から|以降に)(#{modified})ファイルをリストする {45}",
|
151
|
+
"% git diff --name-only '@{#{$1} minutes ago}' {45}",
|
152
|
+
"$ (#{numbers})時間前(から|以降に)(#{modified})ファイルをリストする {45}",
|
153
|
+
"% git diff --name-only '@{#{$1} hours ago}' {45}",
|
154
|
+
"$ (#{numbers})日前(から|以降に)(#{modified})ファイルをリストする {45}",
|
155
|
+
"% git diff --name-only '@{#{$1} days ago}' {45}",
|
156
|
+
"$ (#{numbers})日前からの変更を(#{display}) {45}",
|
157
|
+
"% git log --stat --since=\"#{$1} days ago\" {45}",
|
158
|
+
"$ 編集中のファイルをリストする {46}",
|
159
|
+
"% git ls-files -m {46}",
|
160
|
+
"$ (#{params})という文字列がはじめて出現した(バージョン|コミット)の情報を(#{display}) {47}",
|
161
|
+
"% git log -1 `git rev-list --all | xargs git grep '#{$1}' | tail -1 | ruby -e \"STDIN.each {|line| puts line[0..39] }\"` {47}",
|
162
|
+
"$ (#{params})という文字列がはじめて出現した(バージョン|コミット)に一時的に戻す {47}",
|
163
|
+
"% git checkout `git rev-list --all | xargs git grep '#{$1}' | tail -1 | ruby -e \"STDIN.each {|line| puts line[0..39] }\"` {47}",
|
164
|
+
"$ (#{numbers})個前のバージョンに一時的に戻す {48}",
|
165
|
+
"% git checkout HEAD~#{$1} {48}",
|
166
|
+
"$ (#{numbers})日前の状態に一時的に戻す {48}",
|
167
|
+
"% git checkout \"@{#{$1} days ago}\" {48}",
|
168
|
+
"$ (#{numbers})時間前の状態に一時的に戻す {48}",
|
169
|
+
"% git checkout \"@{#{$1} hours ago}\" {48}",
|
170
|
+
"$ (#{numbers})分前の状態に一時的に戻す {48}",
|
171
|
+
"% git checkout \"@{#{$1} mins ago}\" {48}",
|
172
|
+
"$ 「(#{params})」という文字列を含むファイルを捜す {49}",
|
173
|
+
"% git grep '#{$1}' {49}",
|
174
|
+
"$ 「(#{params})」という文字列を含むファイルを全履歴から捜す {49}",
|
175
|
+
"% git rev-list --all | xargs git grep '#{$1}' {49}",
|
176
|
+
"$ ブランチ名を(#{params})に変える {50}",
|
177
|
+
"% git branch -m #{$1} {50}",
|
178
|
+
"$ (1つ|ひとつ)前のコミットで(削除した|消した)(#{files})を(復元する|元に戻す) {54}",
|
179
|
+
"% git checkout $(git rev-list -n 1 HEAD -- #{$2})^ -- #{$2} {54}",
|
180
|
+
"$ 現在の状況を(#{display}) {55}",
|
181
|
+
"% git status {55}",
|
182
|
+
"$ 「(#{files})」というファイルを「(#{params})」という名前に(変更|移動|改名|リネーム)する {56}",
|
183
|
+
"% git mv #{$1} #{$2} {56}",
|
184
|
+
"$ ファイル「(#{files})」を(#{delete}) {57}",
|
185
|
+
"% git rm #{$1} {57}",
|
186
|
+
"$ 直前のコミットのコメントを修正する {60}",
|
187
|
+
"% git commit --amend {60}",
|
188
|
+
"$ (#{files})に(#{params})という名前が(出現した|書かれた)のはいつ? {61}",
|
189
|
+
"% git blame #{$1} | grep #{$2} {61}",
|
190
|
+
"$ (#{params})という名前が(#{files})に(出現した|書かれた)のはいつ? {61}",
|
191
|
+
"% git blame #{$2} | grep #{$1} {61}",
|
192
|
+
"$ これまで追加/削除された行数を表示する {62}",
|
193
|
+
"% git log --numstat --pretty=\"%H\" | awk 'NF==3 {plus+=$1; minus+=$2} END {printf(\"+%d, -%d\\\\n\", plus, minus)}' {62}",
|
194
|
+
"$ (#{files})に(#{params})という名前が(出現した|書かれた)のはいつ? {64}",
|
195
|
+
"% git blame #{$1} | grep #{$2} {64}",
|
196
|
+
"$ ツリー状にログを表示する {65}",
|
197
|
+
"% git log --graph --all --format=\"%x09%an%x09%h %d %s\" {65}",
|
198
|
+
"$ 最初に「(#{params})」という文字列を含むコミットをした時から現在までに追加されたファイルはどれとどれ? {66}",
|
199
|
+
"% git log --oneline --date=iso-strict --format='%cd %s' | grep #{$1} | tail -1 | awk '{print $1}' | xargs githelp-changed {66}"
|
200
|
+
],
|
201
|
+
"pages": [
|
202
|
+
"HelpLine",
|
203
|
+
"Glossary",
|
204
|
+
"HelpLineでサポートするヘルプ",
|
205
|
+
"Gyazo画像を検索する",
|
206
|
+
"Amazonのパスワードを計算",
|
207
|
+
"自分の場所を調べる",
|
208
|
+
"Amazon新刊漫画",
|
209
|
+
"意義",
|
210
|
+
"gitの古いファイルとの比較",
|
211
|
+
"湘南台のラーメン",
|
212
|
+
"ASCIIコード表",
|
213
|
+
"gitのブランチの表示",
|
214
|
+
"バージョン指定",
|
215
|
+
"gitのファイルを大きい順に表示",
|
216
|
+
"gitのブランチ",
|
217
|
+
"gitレポジトリを確認する",
|
218
|
+
"ファイルのソート",
|
219
|
+
"鎌倉の天気",
|
220
|
+
"やりたいことの例",
|
221
|
+
"Issues",
|
222
|
+
"Git情報源",
|
223
|
+
"関連文献",
|
224
|
+
"ファイルの編集回数のランキング",
|
225
|
+
"★",
|
226
|
+
"gem版の使い方",
|
227
|
+
"gitコマンドに関する疑問",
|
228
|
+
"Electron版GitHelp (2018版)",
|
229
|
+
"新しい順にファイルを表示",
|
230
|
+
"特定のファイルの履歴を消す",
|
231
|
+
"最近の変更を知る",
|
232
|
+
"ブランチのリストを更新日時順に表示する",
|
233
|
+
"ファイルリスト",
|
234
|
+
"Reset関連",
|
235
|
+
"操作履歴",
|
236
|
+
"branches",
|
237
|
+
"タグ",
|
238
|
+
"アイデア",
|
239
|
+
"Gitのマニュアルページ",
|
240
|
+
"このサイトについて",
|
241
|
+
"編集中のファイル",
|
242
|
+
"レポジトリ",
|
243
|
+
"コミットID",
|
244
|
+
"コミット",
|
245
|
+
"コミットをまとめる",
|
246
|
+
"古いファイル表示",
|
247
|
+
"最近編集したファイルのリストを表示する",
|
248
|
+
"編集中のファイルをリストする",
|
249
|
+
"文字列がはじめて出現したバージョンを捜す",
|
250
|
+
"古いバージョンに一時的に戻す",
|
251
|
+
"変数や単語が出現しているファイルを捜す",
|
252
|
+
"ブランチ名",
|
253
|
+
"ユーザ情報",
|
254
|
+
"引数パラメタ",
|
255
|
+
"リモートブランチを消す",
|
256
|
+
"ファイル復元",
|
257
|
+
"現在の状況",
|
258
|
+
"ファイル名変更",
|
259
|
+
"ファイル削除",
|
260
|
+
"テンプレート",
|
261
|
+
"一時的に仕事を退避",
|
262
|
+
"コメント修正",
|
263
|
+
"文字列の出現を調べる",
|
264
|
+
"追加/削除された行数",
|
265
|
+
"数字パラメタ",
|
266
|
+
"文字列の出現判定",
|
267
|
+
"ツリー状にログを表示する",
|
268
|
+
"ファイル追加",
|
269
|
+
"args",
|
270
|
+
"増井俊之"
|
271
|
+
]
|
272
|
+
}
|
273
|
+
module.exports = data
|