Skip to content

Commit 025a192

Browse files
lmarlowgitster
authored andcommitted
bash completion: Sort config completion variables
Sort the config variables to make sync-ing them with Documents/config.txt easier in the future. Signed-off-by: Lee Marlow <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 90c3302 commit 025a192

File tree

1 file changed

+40
-37
lines changed

1 file changed

+40
-37
lines changed

contrib/completion/git-completion.bash

Lines changed: 40 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1206,84 +1206,87 @@ _git_config ()
12061206
esac
12071207
__gitcomp "
12081208
apply.whitespace
1209-
core.fileMode
1210-
core.gitProxy
1211-
core.ignoreStat
1212-
core.preferSymlinkRefs
1213-
core.logAllRefUpdates
1214-
core.loosecompression
1215-
core.repositoryFormatVersion
1216-
core.sharedRepository
1217-
core.warnAmbiguousRefs
1218-
core.compression
1219-
core.packedGitWindowSize
1220-
core.packedGitLimit
12211209
clean.requireForce
12221210
color.branch
12231211
color.branch.current
12241212
color.branch.local
1225-
color.branch.remote
12261213
color.branch.plain
1214+
color.branch.remote
12271215
color.diff
1228-
color.diff.plain
1229-
color.diff.meta
1216+
color.diff.commit
12301217
color.diff.frag
1231-
color.diff.old
1218+
color.diff.meta
12321219
color.diff.new
1233-
color.diff.commit
1220+
color.diff.old
1221+
color.diff.plain
12341222
color.diff.whitespace
12351223
color.pager
12361224
color.status
1237-
color.status.header
12381225
color.status.added
12391226
color.status.changed
1227+
color.status.header
12401228
color.status.untracked
1229+
core.compression
1230+
core.fileMode
1231+
core.gitProxy
1232+
core.ignoreStat
1233+
core.logAllRefUpdates
1234+
core.loosecompression
1235+
core.packedGitLimit
1236+
core.packedGitWindowSize
1237+
core.preferSymlinkRefs
1238+
core.repositoryFormatVersion
1239+
core.sharedRepository
1240+
core.warnAmbiguousRefs
12411241
diff.renameLimit
12421242
diff.renames
12431243
fetch.unpackLimit
12441244
format.headers
12451245
format.subjectprefix
1246-
gitcvs.enabled
1247-
gitcvs.logfile
1248-
gitcvs.allbinary
1249-
gitcvs.dbname gitcvs.dbdriver gitcvs.dbuser gitcvs.dbpass
1250-
gitcvs.dbtablenameprefix
12511246
gc.packrefs
12521247
gc.reflogexpire
12531248
gc.reflogexpireunreachable
12541249
gc.rerereresolved
12551250
gc.rerereunresolved
1256-
http.sslVerify
1257-
http.sslCert
1258-
http.sslKey
1259-
http.sslCAInfo
1260-
http.sslCAPath
1261-
http.maxRequests
1251+
gitcvs.allbinary
1252+
gitcvs.dbdriver
1253+
gitcvs.dbname
1254+
gitcvs.dbpass
1255+
gitcvs.dbtablenameprefix
1256+
gitcvs.dbuser
1257+
gitcvs.enabled
1258+
gitcvs.logfile
12621259
http.lowSpeedLimit
12631260
http.lowSpeedTime
1261+
http.maxRequests
12641262
http.noEPSV
1263+
http.sslCAInfo
1264+
http.sslCAPath
1265+
http.sslCert
1266+
http.sslKey
1267+
http.sslVerify
12651268
i18n.commitEncoding
12661269
i18n.logOutputEncoding
12671270
log.showroot
1268-
merge.tool
12691271
merge.summary
1272+
merge.tool
12701273
merge.verbosity
1271-
pack.window
1272-
pack.depth
1273-
pack.windowMemory
12741274
pack.compression
1275-
pack.deltaCacheSize
12761275
pack.deltaCacheLimit
1276+
pack.deltaCacheSize
1277+
pack.depth
1278+
pack.window
1279+
pack.windowMemory
12771280
pull.octopus
12781281
pull.twohead
1282+
receive.denyNonFastForwards
1283+
receive.unpackLimit
12791284
repack.useDeltaBaseOffset
12801285
showbranch.default
12811286
tar.umask
12821287
transfer.unpackLimit
1283-
receive.unpackLimit
1284-
receive.denyNonFastForwards
1285-
user.name
12861288
user.email
1289+
user.name
12871290
user.signingkey
12881291
branch. remote.
12891292
"

0 commit comments

Comments
 (0)