-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsample.json
More file actions
87 lines (87 loc) · 2.06 KB
/
Copy pathsample.json
File metadata and controls
87 lines (87 loc) · 2.06 KB
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
[
{
"name": "docker",
"values": {
"dkr": "docker",
"drc": "docker-compose"
}
},
{
"name": "git",
"values": {
"add": "git add",
"branchlist": "git branch --sort=-committerdate",
"checkout": "git checkout",
"cherrypick": "git cherry-pick",
"commit": "git commit -m",
"delbranch": "git branch -D",
"gitlog": "git log --oneline",
"gmerge": "git merge",
"mergesquash": "git merge --squash",
"newbranch": "git checkout -B",
"pull": "git pull",
"push": "git push",
"rebase": "git rebase",
"stash": "git stash",
"init": "git init",
"status": "git status"
}
},
{
"name": "linux",
"values": {
"bash": "bash",
"nu": "nu",
"pmap": "pmap",
"ps": "ps"
}
},
{
"name": "misc",
"values": {
"bash": "bash",
"cloc": "cloc",
"drc": "docker-compose",
"ls": "ls",
"nu": "nu",
"printenv": "printenv",
"pwd": "pwd",
"sshkey": "cat /home/nbittich/.ssh/id_rsa.pub",
"vim": "nvim"
}
},
{
"name": "rust",
"values": {
"add": "git add",
"bloat": "cargo bloat",
"branchlist": "git branch --sort=-committerdate",
"check": "cargo check",
"checkout": "git checkout",
"cherrypick": "git cherry-pick",
"clippy": "cargo clippy",
"commit": "git commit -m",
"delbranch": "git branch -D",
"doc": "cargo doc --document-private-items --open",
"fix": "cargo fix",
"fmt": "cargo fmt",
"gitlog": "git log --oneline",
"gmerge": "git merge",
"mergesquash": "git merge --squash",
"newbranch": "git checkout -B",
"publish": "cargo publish",
"pull": "git pull",
"push": "git push",
"pwd": "pwd",
"rebase": "git rebase",
"run": "cargo run",
"rup": "rustup update",
"stash": "git stash",
"status": "git status",
"stddoc": "rustup doc --std",
"test": "cargo test -- --nocapture",
"tree": "cargo tree",
"vim": "nvim"
}
}
]