-
Notifications
You must be signed in to change notification settings - Fork 7
/
commands.js
executable file
·38 lines (35 loc) · 957 Bytes
/
commands.js
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
/*
|--------------------------------------------------------------------------
| Below are the commands & aliases defined for each Git command.
| Have one to add? Make a PR!
|--------------------------------------------------------------------------
*/
const commands = {
add: ['anoint'],
blame: ['judas'],
branch: ['vine'],
checkout: ['possess'],
clone: ['bread-and-fish'],
commit: ['save'],
diff: ['reform'],
fetch: ['fishers-of-men'],
help: ['cry-out'],
init: ['in-the-beginning', 'create'],
log: ['testimony'],
merge: ['trinity'],
pull: ['petition'],
push: ['preach'],
rebase: ['disciple'],
restore: ['resurrect'],
reset: ['ark'],
revert: ['repent'],
stash: ['sow-and-reap', 'bear-cross'],
status: ['walk'],
tag: ['testament', 'circumcise'],
bisect: ['lost-sheep']
};
const aliases = {
'branch -D': ['crucify'],
'push --force': ['indoctrinate']
}
export default Object.assign(commands, aliases);