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
|
{
"br":{
"cmd": "git branch -vv",
"help":"show local branches"},
"clean":{
"cmd": "git clean -dfx",
"help": "remove all untracked files/folders"},
"diff":{
"cmd": "git diff",
"help": "git show differences"},
"difftool":{
"cmd": "git difftool",
"disable_async": true,
"help": "show differences using a tool"
},
"fetch":{
"cmd": "git fetch",
"allow_all": true,
"help": "fetch remote update"
},
"last":{
"cmd": "git log -1 HEAD",
"help": "show log information of HEAD"
},
"log":
{"cmd": "git log",
"disable_async": true,
"help": "show logs"
},
"merge":{
"cmd": "git merge @{u}",
"help": "merge remote updates"
},
"mergetool":{
"cmd": "git mergetool",
"disable_async": true,
"help": "merge updates with a tool"
},
"patch":{
"cmd": "git format-patch HEAD~",
"help": "make a patch"
},
"pull":{
"cmd": "git pull",
"allow_all": true,
"help": "pull remote updates"
},
"push":{
"cmd": "git push",
"allow_all": true,
"help": "push the local updates"
},
"rebase":{
"cmd": "git rebase",
"help": "rebase from master"
},
"reflog":{
"cmd": "git reflog",
"help": "show ref logs"
},
"remote":{
"cmd": "git remote -v",
"help": "show remote settings"
},
"reset":{
"cmd": "git reset",
"help": "reset repo(s)"
},
"show":{
"cmd": "git show",
"disable_async": true,
"help": "show detailed commit information"
},
"stash":{
"cmd": "git stash",
"help": "store uncommited changes"
},
"stat":{
"cmd": "git diff --stat",
"help": "show edit statistics"
},
"st":{
"cmd": "git status",
"help": "show status"
},
"tag":{
"cmd": "git tag -n",
"help": "show tags"
}
}
|