]> git.ipfire.org Git - thirdparty/git.git/blob - command-list.txt
Merge branch 'jb/reflog-expire-delete-dry-run-options' into maint-2.43
[thirdparty/git.git] / command-list.txt
1 # Command classification list
2 # ---------------------------
3 # All supported commands, builtin or external, must be described in
4 # here. This info is used to list commands in various places. Each
5 # command is on one line followed by one or more attributes.
6 #
7 # The first attribute group is mandatory and indicates the command
8 # type. This group includes:
9 #
10 # mainporcelain
11 # ancillarymanipulators
12 # ancillaryinterrogators
13 # foreignscminterface
14 # plumbingmanipulators
15 # plumbinginterrogators
16 # synchingrepositories
17 # synchelpers
18 # purehelpers
19 #
20 # The type names are self explanatory. But if you want to see what
21 # command belongs to what group to get a better picture, have a look
22 # at "git" man page, "GIT COMMANDS" section.
23 #
24 # Commands of type mainporcelain can also optionally have one of these
25 # attributes:
26 #
27 # init
28 # worktree
29 # info
30 # history
31 # remote
32 #
33 # These commands are considered "common" and will show up in "git
34 # help" output in groups. Uncommon porcelain commands must not
35 # specify any of these attributes.
36 #
37 # "complete" attribute is used to mark that the command should be
38 # completable by git-completion.bash. Note that by default,
39 # mainporcelain commands are completable so you don't need this
40 # attribute.
41 #
42 # As part of the Git man page list, the man(5/7) guides are also
43 # specified here, which can only have "guide" attribute and nothing
44 # else.
45 #
46 # User-facing repository, command and file interfaces such as
47 # documentation for the .gitmodules, .mailmap etc. files lives in man
48 # sections 5 and 7. These entries can only have the "userinterfaces"
49 # attribute and nothing else.
50 #
51 # Git's file formats and protocols, such as documentation for the
52 # *.bundle format lives in man section 5. These entries can only have
53 # the "developerinterfaces" attribute and nothing else.
54 #
55 ### command list (do not change this line)
56 # command name category [category] [category]
57 git-add mainporcelain worktree
58 git-am mainporcelain
59 git-annotate ancillaryinterrogators
60 git-apply plumbingmanipulators complete
61 git-archimport foreignscminterface
62 git-archive mainporcelain
63 git-bisect mainporcelain info
64 git-blame ancillaryinterrogators complete
65 git-branch mainporcelain history
66 git-bugreport ancillaryinterrogators
67 git-bundle mainporcelain
68 git-cat-file plumbinginterrogators
69 git-check-attr purehelpers
70 git-check-ignore purehelpers
71 git-check-mailmap purehelpers
72 git-check-ref-format purehelpers
73 git-checkout mainporcelain
74 git-checkout-index plumbingmanipulators
75 git-cherry plumbinginterrogators complete
76 git-cherry-pick mainporcelain
77 git-citool mainporcelain
78 git-clean mainporcelain
79 git-clone mainporcelain init
80 git-column purehelpers
81 git-commit mainporcelain history
82 git-commit-graph plumbingmanipulators
83 git-commit-tree plumbingmanipulators
84 git-config ancillarymanipulators complete
85 git-count-objects ancillaryinterrogators
86 git-credential purehelpers
87 git-credential-cache purehelpers
88 git-credential-store purehelpers
89 git-cvsexportcommit foreignscminterface
90 git-cvsimport foreignscminterface
91 git-cvsserver foreignscminterface
92 git-daemon synchingrepositories
93 git-describe mainporcelain
94 git-diagnose ancillaryinterrogators
95 git-diff mainporcelain info
96 git-diff-files plumbinginterrogators
97 git-diff-index plumbinginterrogators
98 git-diff-tree plumbinginterrogators
99 git-difftool ancillaryinterrogators complete
100 git-fast-export ancillarymanipulators
101 git-fast-import ancillarymanipulators
102 git-fetch mainporcelain remote
103 git-fetch-pack synchingrepositories
104 git-filter-branch ancillarymanipulators
105 git-fmt-merge-msg purehelpers
106 git-for-each-ref plumbinginterrogators
107 git-for-each-repo plumbinginterrogators
108 git-format-patch mainporcelain
109 git-fsck ancillaryinterrogators complete
110 git-gc mainporcelain
111 git-get-tar-commit-id plumbinginterrogators
112 git-grep mainporcelain info
113 git-gui mainporcelain
114 git-hash-object plumbingmanipulators
115 git-help ancillaryinterrogators complete
116 git-hook purehelpers
117 git-http-backend synchingrepositories
118 git-http-fetch synchelpers
119 git-http-push synchelpers
120 git-imap-send foreignscminterface
121 git-index-pack plumbingmanipulators
122 git-init mainporcelain init
123 git-instaweb ancillaryinterrogators complete
124 git-interpret-trailers purehelpers
125 git-log mainporcelain info
126 git-ls-files plumbinginterrogators
127 git-ls-remote plumbinginterrogators
128 git-ls-tree plumbinginterrogators
129 git-mailinfo purehelpers
130 git-mailsplit purehelpers
131 git-maintenance mainporcelain
132 git-merge mainporcelain history
133 git-merge-base plumbinginterrogators
134 git-merge-file plumbingmanipulators
135 git-merge-index plumbingmanipulators
136 git-merge-one-file purehelpers
137 git-merge-tree ancillaryinterrogators
138 git-mergetool ancillarymanipulators complete
139 git-mktag plumbingmanipulators
140 git-mktree plumbingmanipulators
141 git-multi-pack-index plumbingmanipulators
142 git-mv mainporcelain worktree
143 git-name-rev plumbinginterrogators
144 git-notes mainporcelain
145 git-p4 foreignscminterface
146 git-pack-objects plumbingmanipulators
147 git-pack-redundant plumbinginterrogators
148 git-pack-refs ancillarymanipulators
149 git-patch-id purehelpers
150 git-prune ancillarymanipulators complete
151 git-prune-packed plumbingmanipulators
152 git-pull mainporcelain remote
153 git-push mainporcelain remote
154 git-quiltimport foreignscminterface
155 git-range-diff mainporcelain
156 git-read-tree plumbingmanipulators
157 git-rebase mainporcelain history
158 git-receive-pack synchelpers
159 git-reflog ancillarymanipulators complete
160 git-remote ancillarymanipulators complete
161 git-repack ancillarymanipulators complete
162 git-replace ancillarymanipulators complete
163 git-request-pull foreignscminterface complete
164 git-rerere ancillaryinterrogators
165 git-reset mainporcelain history
166 git-restore mainporcelain worktree
167 git-rev-list plumbinginterrogators
168 git-rev-parse plumbinginterrogators
169 git-revert mainporcelain
170 git-rm mainporcelain worktree
171 git-send-email foreignscminterface complete
172 git-send-pack synchingrepositories
173 git-sh-i18n purehelpers
174 git-sh-setup purehelpers
175 git-shell synchelpers
176 git-shortlog mainporcelain
177 git-show mainporcelain info
178 git-show-branch ancillaryinterrogators complete
179 git-show-index plumbinginterrogators
180 git-show-ref plumbinginterrogators
181 git-sparse-checkout mainporcelain
182 git-stage complete
183 git-stash mainporcelain
184 git-status mainporcelain info
185 git-stripspace purehelpers
186 git-submodule mainporcelain
187 git-svn foreignscminterface
188 git-switch mainporcelain history
189 git-symbolic-ref plumbingmanipulators
190 git-tag mainporcelain history
191 git-unpack-file plumbinginterrogators
192 git-unpack-objects plumbingmanipulators
193 git-update-index plumbingmanipulators
194 git-update-ref plumbingmanipulators
195 git-update-server-info synchingrepositories
196 git-upload-archive synchelpers
197 git-upload-pack synchelpers
198 git-var plumbinginterrogators
199 git-verify-commit ancillaryinterrogators
200 git-verify-pack plumbinginterrogators
201 git-verify-tag ancillaryinterrogators
202 git-version ancillaryinterrogators
203 git-whatchanged ancillaryinterrogators complete
204 git-worktree mainporcelain
205 git-write-tree plumbingmanipulators
206 gitattributes userinterfaces
207 gitcli userinterfaces
208 gitcore-tutorial guide
209 gitcredentials guide
210 gitcvs-migration guide
211 gitdiffcore guide
212 giteveryday guide
213 gitfaq guide
214 gitformat-bundle developerinterfaces
215 gitformat-chunk developerinterfaces
216 gitformat-commit-graph developerinterfaces
217 gitformat-index developerinterfaces
218 gitformat-pack developerinterfaces
219 gitformat-signature developerinterfaces
220 gitglossary guide
221 githooks userinterfaces
222 gitignore userinterfaces
223 gitk mainporcelain
224 gitmailmap userinterfaces
225 gitmodules userinterfaces
226 gitnamespaces guide
227 gitprotocol-capabilities developerinterfaces
228 gitprotocol-common developerinterfaces
229 gitprotocol-http developerinterfaces
230 gitprotocol-pack developerinterfaces
231 gitprotocol-v2 developerinterfaces
232 gitremote-helpers guide
233 gitrepository-layout userinterfaces
234 gitrevisions userinterfaces
235 gitsubmodules guide
236 gittutorial guide
237 gittutorial-2 guide
238 gitweb ancillaryinterrogators
239 gitworkflows guide
240 scalar mainporcelain