##// END OF EJS Templates
phases: add a phases command to display and manipulate phases
phases: add a phases command to display and manipulate phases

File last commit:

r15830:8ed112ed default
r15830:8ed112ed default
Show More
test-debugcomplete.t
272 lines | 6.4 KiB | text/troff | Tads3Lexer
/ tests / test-debugcomplete.t
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 Show all commands except debug commands
$ hg debugcomplete
add
addremove
annotate
archive
backout
bisect
Matt Mackall
bookmarks: move push/pull command features to core
r13368 bookmarks
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 branch
branches
bundle
cat
clone
commit
copy
diff
export
forget
Matt Mackall
graft: add initial implementation
r15238 graft
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 grep
heads
help
identify
import
incoming
init
locate
log
manifest
merge
outgoing
parents
paths
Pierre-Yves David
phases: add a phases command to display and manipulate phases
r15830 phase
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 pull
push
recover
remove
rename
resolve
revert
rollback
root
serve
showconfig
status
summary
tag
tags
tip
unbundle
update
verify
version
Show all commands that start with "a"
$ hg debugcomplete a
add
addremove
annotate
archive
Do not show debug commands if there are other candidates
$ hg debugcomplete d
diff
Show debug commands if there are no other candidates
$ hg debugcomplete debug
debugancestor
debugbuilddag
Peter Arrenbrecht
commands: add debugbundle command...
r13724 debugbundle
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugcheckstate
debugcommands
debugcomplete
debugconfig
debugdag
debugdata
debugdate
Peter Arrenbrecht
discovery: add new set-based discovery...
r14164 debugdiscovery
Matt Mackall
filesets: introduce basic fileset expression parser
r14511 debugfileset
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugfsinfo
Peter Arrenbrecht
wireproto: add getbundle() function...
r13741 debuggetbundle
jfh
add debugignore which yields the combined ignore patten of the .hgignore files...
r13396 debugignore
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugindex
debugindexdot
debuginstall
Peter Arrenbrecht
wireproto: add known([id]) function...
r13723 debugknown
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugpushkey
debugrebuildstate
debugrename
Sune Foldager
add debugrevlog command...
r14304 debugrevlog
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugrevspec
debugsetparents
debugstate
debugsub
debugwalk
Peter Arrenbrecht
debug: add debugwireargs to test argument passing over the wire...
r13720 debugwireargs
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924
Do not show the alias of a debug command if there are other candidates
(this should hide rawcommit)
$ hg debugcomplete r
recover
remove
rename
resolve
revert
rollback
root
Show the alias of a debug command if there are no other candidates
$ hg debugcomplete rawc
Show the global options
$ hg debugcomplete --options | sort
--config
--cwd
--debug
--debugger
--encoding
--encodingmode
--help
--noninteractive
--profile
--quiet
--repository
--time
--traceback
--verbose
--version
-R
-h
-q
-v
-y
Show the options for the "serve" command
$ hg debugcomplete --options serve | sort
--accesslog
--address
--certificate
Idan Kamara
serve: add --cmdserver option to communicate with hg over a pipe
r14647 --cmdserver
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 --config
--cwd
--daemon
--daemon-pipefds
--debug
--debugger
--encoding
--encodingmode
--errorlog
--help
--ipv6
--name
--noninteractive
--pid-file
--port
--prefix
--profile
--quiet
--repository
--stdio
--style
--templates
--time
--traceback
--verbose
--version
--web-conf
-6
-A
-E
-R
-a
-d
-h
-n
-p
-q
-t
-v
-y
Show an error if we use --options with an ambiguous abbreviation
$ hg debugcomplete --options s
hg: command 's' is ambiguous:
serve showconfig status summary
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924
Show all commands + options
$ hg debugcommands
Martin Geisler
add: recurse into subrepositories with --subrepos/-S flag
r12270 add: include, exclude, subrepos, dry-run
Patrick Mezard
annotate: support diff whitespace filtering flags (issue3030)...
r15528 annotate: rev, follow, no-follow, text, user, file, date, number, changeset, line-number, ignore-all-space, ignore-space-change, ignore-blank-lines, include, exclude
Yuya Nishihara
url: add --insecure option to bypass verification of ssl certificates...
r13328 clone: noupdate, updaterev, rev, branch, pull, uncompressed, ssh, remotecmd, insecure
Martin Geisler
subrepos: abort commit by default if a subrepo is dirty (BC)...
r15321 commit: addremove, close-branch, include, exclude, message, logfile, date, user, subrepos
Martin Geisler
diff: recurse into subrepositories with --subrepos/-S flag
r12167 diff: rev, change, text, git, nodates, show-function, reverse, ignore-all-space, ignore-space-change, ignore-blank-lines, unified, stat, include, exclude, subrepos
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 export: output, switch-parent, rev, text, git, nodates
forget: include, exclude
Yuya Nishihara
url: add --insecure option to bypass verification of ssl certificates...
r13328 init: ssh, remotecmd, insecure
Pierre-Yves David
log: do not display hidden changeset...
r14645 log: follow, follow-first, date, copies, keyword, rev, removed, only-merges, user, only-branch, branch, prune, hidden, patch, git, limit, no-merges, stat, style, template, include, exclude
Martin Geisler
commands: use mergetoolopts when a command supports --tool
r14852 merge: force, rev, preview, tool
Pierre-Yves David
phases: add a phases command to display and manipulate phases
r15830 phase: public, draft, secret, force, rev
Matt Mackall
bookmarks: move push/pull command features to core
r13368 pull: update, force, rev, bookmark, branch, ssh, remotecmd, insecure
push: force, rev, bookmark, branch, new-branch, ssh, remotecmd, insecure
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 remove: after, force, include, exclude
Idan Kamara
serve: add --cmdserver option to communicate with hg over a pipe
r14647 serve: accesslog, daemon, daemon-pipefds, errorlog, port, address, prefix, name, web-conf, webdir-conf, pid-file, stdio, cmdserver, templates, style, ipv6, certificate
Martin Geisler
status: recurse into subrepositories with --subrepos/-S flag
r12166 status: all, modified, added, removed, deleted, clean, unknown, ignored, no-status, copies, print0, rev, change, include, exclude, subrepos
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 summary: remote
update: clean, check, date, rev
addremove: similarity, include, exclude, dry-run
Matt Mackall
tests: update debugcomplete output
r12326 archive: no-decode, prefix, rev, type, subrepos, include, exclude
Martin Geisler
commands: use mergetoolopts when a command supports --tool
r14852 backout: merge, parent, rev, tool, include, exclude, message, logfile, date, user
Benoit Boissinot
bisect: new command to extend the bisect range (issue2690)...
r13601 bisect: reset, good, bad, skip, extend, command, noupdate
Kevin Bullock
bookmarks: allow deactivating current bookmark with -i
r14189 bookmarks: force, rev, delete, rename, inactive
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 branch: force, clean
branches: active, closed
Yuya Nishihara
url: add --insecure option to bypass verification of ssl certificates...
r13328 bundle: force, rev, branch, base, all, type, ssh, remotecmd, insecure
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 cat: output, rev, decode, include, exclude
copy: after, force, include, exclude, dry-run
debugancestor:
Peter Arrenbrecht
debugbuilddag: use memctx for speed...
r14163 debugbuilddag: mergeable-file, overwritten-file, new-file
Peter Arrenbrecht
commands: add debugbundle command...
r13724 debugbundle: all
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugcheckstate:
debugcommands:
debugcomplete: options
debugdag: tags, branches, dots, spaces
Sune Foldager
debugindex etc.: add --changelog and --manifest options...
r14323 debugdata: changelog, manifest
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugdate: extended
Peter Arrenbrecht
discovery: add new set-based discovery...
r14164 debugdiscovery: old, nonheads, ssh, remotecmd, insecure
Matt Mackall
filesets: introduce basic fileset expression parser
r14511 debugfileset:
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugfsinfo:
Peter Arrenbrecht
wireproto: add getbundle() function...
r13741 debuggetbundle: head, common, type
jfh
add debugignore which yields the combined ignore patten of the .hgignore files...
r13396 debugignore:
Sune Foldager
debugindex etc.: add --changelog and --manifest options...
r14323 debugindex: changelog, manifest, format
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugindexdot:
debuginstall:
Peter Arrenbrecht
wireproto: add known([id]) function...
r13723 debugknown:
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugpushkey:
debugrebuildstate: rev
debugrename: rev
Matt Mackall
debugrevlog: add --dump flag to dump graphable per-revision statistics
r14326 debugrevlog: changelog, manifest, dump
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugrevspec:
debugsetparents:
Adrian Buehlmann
debugstate: add new --datesort option...
r13767 debugstate: nodates, datesort
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 debugsub: rev
debugwalk: include, exclude
Benoit Boissinot
fix broken tests...
r14053 debugwireargs: three, four, five, ssh, remotecmd, insecure
Matt Mackall
graft: add --continue support
r15241 graft: continue, edit, currentdate, currentuser, date, user, tool
Md. O. Shayan
grep: don't print data from binary files for matches (issue2614)
r13920 grep: print0, all, text, follow, ignore-case, files-with-matches, line-number, rev, user, date, include, exclude
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 heads: rev, topo, active, closed, style, template
Martin Geisler
help: add -c/--command flag to only show command help (issue2799)
r14286 help: extension, command
Mads Kiilerich
id: add command line options for handling ssh and https urls
r15580 identify: rev, num, id, branch, tags, bookmarks, ssh, remotecmd, insecure
Matt Mackall
import: add --edit switch
r15221 import: strip, base, edit, force, no-commit, bypass, exact, import-branch, message, logfile, date, user, similarity
Matt Mackall
bookmarks: merge incoming/outgoing into core
r13366 incoming: force, newest-first, bundle, rev, bookmarks, branch, patch, git, limit, no-merges, stat, style, template, ssh, remotecmd, insecure, subrepos
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 locate: rev, print0, fullpath, include, exclude
Adrian Buehlmann
add new option --all to manifest command...
r14399 manifest: rev, all
Matt Mackall
bookmarks: merge incoming/outgoing into core
r13366 outgoing: force, rev, newest-first, bookmarks, branch, patch, git, limit, no-merges, stat, style, template, ssh, remotecmd, insecure, subrepos
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 parents: rev, style, template
paths:
recover:
rename: after, force, include, exclude, dry-run
Martin Geisler
commands: use mergetoolopts when a command supports --tool
r14852 resolve: all, list, mark, unmark, no-status, tool, include, exclude
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 revert: all, date, rev, no-backup, include, exclude, dry-run
Greg Ward
rollback: avoid unsafe rollback when not at tip (issue2998)...
r15183 rollback: dry-run, force
Pradeepkumar Gayam
tests: unify test-debugcomplete
r11924 root:
showconfig: untrusted
tag: force, local, rev, remove, edit, message, date, user
tags:
tip: patch, git, style, template
unbundle: update
verify:
version: