Show More
This diff has been collapsed as it changes many lines, (1021 lines changed) Show them Hide them | |||||
@@ -20,11 +20,10 b' import merge as merge_' | |||||
20 | def add(ui, repo, *pats, **opts): |
|
20 | def add(ui, repo, *pats, **opts): | |
21 | """add the specified files on the next commit |
|
21 | """add the specified files on the next commit | |
22 |
|
22 | |||
23 | Schedule files to be version controlled and added to the |
|
23 | Schedule files to be version controlled and added to the repository. | |
24 | repository. |
|
24 | ||
25 |
|
25 | The files will be added to the repository at the next commit. To undo an | ||
26 | The files will be added to the repository at the next commit. To |
|
26 | add before that, see hg forget. | |
27 | undo an add before that, see hg forget. |
|
|||
28 |
|
27 | |||
29 | If no names are given, add all files to the repository. |
|
28 | If no names are given, add all files to the repository. | |
30 | """ |
|
29 | """ | |
@@ -49,19 +48,16 b' def add(ui, repo, *pats, **opts):' | |||||
49 | def addremove(ui, repo, *pats, **opts): |
|
48 | def addremove(ui, repo, *pats, **opts): | |
50 | """add all new files, delete all missing files |
|
49 | """add all new files, delete all missing files | |
51 |
|
50 | |||
52 | Add all new files and remove all missing files from the |
|
51 | Add all new files and remove all missing files from the repository. | |
53 | repository. |
|
52 | ||
54 |
|
53 | New files are ignored if they match any of the patterns in .hgignore. As | ||
55 | New files are ignored if they match any of the patterns in |
|
54 | with add, these changes take effect at the next commit. | |
56 | .hgignore. As with add, these changes take effect at the next |
|
55 | ||
57 | commit. |
|
56 | Use the -s/--similarity option to detect renamed files. With a parameter > | |
58 |
|
57 | 0, this compares every removed file with every added file and records | ||
59 | Use the -s/--similarity option to detect renamed files. With a |
|
58 | those similar enough as renames. This option takes a percentage between 0 | |
60 | parameter > 0, this compares every removed file with every added |
|
59 | (disabled) and 100 (files must be identical) as its parameter. Detecting | |
61 | file and records those similar enough as renames. This option |
|
60 | renamed files this way can be expensive. | |
62 | takes a percentage between 0 (disabled) and 100 (files must be |
|
|||
63 | identical) as its parameter. Detecting renamed files this way can |
|
|||
64 | be expensive. |
|
|||
65 | """ |
|
61 | """ | |
66 | try: |
|
62 | try: | |
67 | sim = float(opts.get('similarity') or 0) |
|
63 | sim = float(opts.get('similarity') or 0) | |
@@ -74,16 +70,13 b' def addremove(ui, repo, *pats, **opts):' | |||||
74 | def annotate(ui, repo, *pats, **opts): |
|
70 | def annotate(ui, repo, *pats, **opts): | |
75 | """show changeset information by line for each file |
|
71 | """show changeset information by line for each file | |
76 |
|
72 | |||
77 | List changes in files, showing the revision id responsible for |
|
73 | List changes in files, showing the revision id responsible for each line | |
78 | each line |
|
74 | ||
79 |
|
75 | This command is useful for discovering when a change was made and by whom. | ||
80 | This command is useful for discovering when a change was made and |
|
76 | ||
81 | by whom. |
|
77 | Without the -a/--text option, annotate will avoid processing files it | |
82 |
|
78 | detects as binary. With -a, annotate will annotate the file anyway, | ||
83 | Without the -a/--text option, annotate will avoid processing files |
|
79 | although the results will probably be neither useful nor desirable. | |
84 | it detects as binary. With -a, annotate will annotate the file |
|
|||
85 | anyway, although the results will probably be neither useful |
|
|||
86 | nor desirable. |
|
|||
87 | """ |
|
80 | """ | |
88 | datefunc = ui.quiet and util.shortdate or util.datestr |
|
81 | datefunc = ui.quiet and util.shortdate or util.datestr | |
89 | getdate = util.cachefunc(lambda x: datefunc(x[0].date())) |
|
82 | getdate = util.cachefunc(lambda x: datefunc(x[0].date())) | |
@@ -137,11 +130,10 b' def annotate(ui, repo, *pats, **opts):' | |||||
137 | def archive(ui, repo, dest, **opts): |
|
130 | def archive(ui, repo, dest, **opts): | |
138 | '''create an unversioned archive of a repository revision |
|
131 | '''create an unversioned archive of a repository revision | |
139 |
|
132 | |||
140 | By default, the revision used is the parent of the working |
|
133 | By default, the revision used is the parent of the working directory; use | |
141 |
|
|
134 | -r/--rev to specify a different revision. | |
142 |
|
135 | |||
143 | To specify the type of archive to create, use -t/--type. Valid |
|
136 | To specify the type of archive to create, use -t/--type. Valid types are: | |
144 | types are: |
|
|||
145 |
|
137 | |||
146 | "files" (default): a directory full of files |
|
138 | "files" (default): a directory full of files | |
147 | "tar": tar archive, uncompressed |
|
139 | "tar": tar archive, uncompressed | |
@@ -150,13 +142,12 b' def archive(ui, repo, dest, **opts):' | |||||
150 | "uzip": zip archive, uncompressed |
|
142 | "uzip": zip archive, uncompressed | |
151 | "zip": zip archive, compressed using deflate |
|
143 | "zip": zip archive, compressed using deflate | |
152 |
|
144 | |||
153 | The exact name of the destination archive or directory is given |
|
145 | The exact name of the destination archive or directory is given using a | |
154 |
|
|
146 | format string; see 'hg help export' for details. | |
155 |
|
147 | |||
156 | Each member added to an archive file has a directory prefix |
|
148 | Each member added to an archive file has a directory prefix prepended. Use | |
157 |
|
|
149 | -p/--prefix to specify a format string for the prefix. The default is the | |
158 |
|
|
150 | basename of the archive, with suffixes removed. | |
159 | removed. |
|
|||
160 | ''' |
|
151 | ''' | |
161 |
|
152 | |||
162 | ctx = repo[opts.get('rev')] |
|
153 | ctx = repo[opts.get('rev')] | |
@@ -181,17 +172,17 b' def archive(ui, repo, dest, **opts):' | |||||
181 | def backout(ui, repo, node=None, rev=None, **opts): |
|
172 | def backout(ui, repo, node=None, rev=None, **opts): | |
182 | '''reverse effect of earlier changeset |
|
173 | '''reverse effect of earlier changeset | |
183 |
|
174 | |||
184 | Commit the backed out changes as a new changeset. The new |
|
175 | Commit the backed out changes as a new changeset. The new changeset is a | |
185 |
ch |
|
176 | child of the backed out changeset. | |
186 |
|
177 | |||
187 | If you backout a changeset other than the tip, a new head is |
|
178 | If you backout a changeset other than the tip, a new head is created. This | |
188 |
|
|
179 | head will be the new tip and you should merge this backout changeset with | |
189 | backout changeset with another head. |
|
180 | another head. | |
190 |
|
181 | |||
191 | The --merge option remembers the parent of the working directory |
|
182 | The --merge option remembers the parent of the working directory before | |
192 |
|
|
183 | starting the backout, then merges the new head with that changeset | |
193 |
|
|
184 | afterwards. This saves you from doing the merge by hand. The result of | |
194 |
|
|
185 | this merge is not committed, as with a normal merge. | |
195 |
|
186 | |||
196 | See 'hg help dates' for a list of formats valid for -d/--date. |
|
187 | See 'hg help dates' for a list of formats valid for -d/--date. | |
197 | ''' |
|
188 | ''' | |
@@ -268,23 +259,22 b' def bisect(ui, repo, rev=None, extra=Non' | |||||
268 | reset=None, good=None, bad=None, skip=None, noupdate=None): |
|
259 | reset=None, good=None, bad=None, skip=None, noupdate=None): | |
269 | """subdivision search of changesets |
|
260 | """subdivision search of changesets | |
270 |
|
261 | |||
271 | This command helps to find changesets which introduce problems. To |
|
262 | This command helps to find changesets which introduce problems. To use, | |
272 |
|
|
263 | mark the earliest changeset you know exhibits the problem as bad, then | |
273 |
|
|
264 | mark the latest changeset which is free from the problem as good. Bisect | |
274 |
|
|
265 | will update your working directory to a revision for testing (unless the | |
275 |
|
|
266 | -U/--noupdate option is specified). Once you have performed tests, mark | |
276 | you have performed tests, mark the working directory as good or |
|
267 | the working directory as good or bad, and bisect will either update to | |
277 | bad, and bisect will either update to another candidate changeset |
|
268 | another candidate changeset or announce that it has found the bad | |
278 | or announce that it has found the bad revision. |
|
269 | revision. | |
279 |
|
270 | |||
280 | As a shortcut, you can also use the revision argument to mark a |
|
271 | As a shortcut, you can also use the revision argument to mark a revision | |
281 |
|
|
272 | as good or bad without checking it out first. | |
282 |
|
273 | |||
283 | If you supply a command, it will be used for automatic bisection. |
|
274 | If you supply a command, it will be used for automatic bisection. Its exit | |
284 |
|
|
275 | status will be used to mark revisions as good or bad: status 0 means good, | |
285 | status 0 means good, 125 means to skip the revision, 127 |
|
276 | 125 means to skip the revision, 127 (command not found) will abort the | |
286 | (command not found) will abort the bisection, and any other |
|
277 | bisection, and any other non-zero exit status means the revision is bad. | |
287 | non-zero exit status means the revision is bad. |
|
|||
288 | """ |
|
278 | """ | |
289 | def print_result(nodes, good): |
|
279 | def print_result(nodes, good): | |
290 | displayer = cmdutil.show_changeset(ui, repo, {}) |
|
280 | displayer = cmdutil.show_changeset(ui, repo, {}) | |
@@ -406,21 +396,19 b' def bisect(ui, repo, rev=None, extra=Non' | |||||
406 | def branch(ui, repo, label=None, **opts): |
|
396 | def branch(ui, repo, label=None, **opts): | |
407 | """set or show the current branch name |
|
397 | """set or show the current branch name | |
408 |
|
398 | |||
409 | With no argument, show the current branch name. With one argument, |
|
399 | With no argument, show the current branch name. With one argument, set the | |
410 |
|
|
400 | working directory branch name (the branch will not exist in the repository | |
411 |
|
|
401 | until the next commit). Standard practice recommends that primary | |
412 |
|
|
402 | development take place on the 'default' branch. | |
413 | branch. |
|
403 | ||
414 |
|
404 | Unless -f/--force is specified, branch will not let you set a branch name | ||
415 | Unless -f/--force is specified, branch will not let you set a |
|
405 | that already exists, even if it's inactive. | |
416 | branch name that already exists, even if it's inactive. |
|
406 | ||
417 |
|
407 | Use -C/--clean to reset the working directory branch to that of the parent | ||
418 | Use -C/--clean to reset the working directory branch to that of |
|
408 | of the working directory, negating a previous branch change. | |
419 | the parent of the working directory, negating a previous branch |
|
409 | ||
420 | change. |
|
410 | Use the command 'hg update' to switch to an existing branch. Use 'hg | |
421 |
|
411 | commit --close-branch' to mark this branch as closed. | ||
422 | Use the command 'hg update' to switch to an existing branch. Use |
|
|||
423 | 'hg commit --close-branch' to mark this branch as closed. |
|
|||
424 | """ |
|
412 | """ | |
425 |
|
413 | |||
426 | if opts.get('clean'): |
|
414 | if opts.get('clean'): | |
@@ -440,12 +428,12 b' def branch(ui, repo, label=None, **opts)' | |||||
440 | def branches(ui, repo, active=False, closed=False): |
|
428 | def branches(ui, repo, active=False, closed=False): | |
441 | """list repository named branches |
|
429 | """list repository named branches | |
442 |
|
430 | |||
443 | List the repository's named branches, indicating which ones are |
|
431 | List the repository's named branches, indicating which ones are inactive. | |
444 |
|
|
432 | If -c/--closed is specified, also list branches which have been marked | |
445 |
|
|
433 | closed (see hg commit --close-branch). | |
446 |
|
434 | |||
447 | If -a/--active is specified, only show active branches. A branch |
|
435 | If -a/--active is specified, only show active branches. A branch is | |
448 |
|
|
436 | considered active if it contains repository heads. | |
449 |
|
437 | |||
450 | Use the command 'hg update' to switch to an existing branch. |
|
438 | Use the command 'hg update' to switch to an existing branch. | |
451 | """ |
|
439 | """ | |
@@ -482,25 +470,24 b' def branches(ui, repo, active=False, clo' | |||||
482 | def bundle(ui, repo, fname, dest=None, **opts): |
|
470 | def bundle(ui, repo, fname, dest=None, **opts): | |
483 | """create a changegroup file |
|
471 | """create a changegroup file | |
484 |
|
472 | |||
485 | Generate a compressed changegroup file collecting changesets not |
|
473 | Generate a compressed changegroup file collecting changesets not known to | |
486 |
|
|
474 | be in another repository. | |
487 |
|
475 | |||
488 | If no destination repository is specified the destination is |
|
476 | If no destination repository is specified the destination is assumed to | |
489 |
|
|
477 | have all the nodes specified by one or more --base parameters. To create a | |
490 |
|
|
478 | bundle containing all changesets, use -a/--all (or --base null). | |
491 | -a/--all (or --base null). |
|
479 | ||
492 |
|
480 | You can change compression method with the -t/--type option. The available | ||
493 | You can change compression method with the -t/--type option. |
|
481 | compression methods are: none, bzip2, and gzip (by default, bundles are | |
494 | The available compression methods are: none, bzip2, and |
|
482 | compressed using bzip2). | |
495 | gzip (by default, bundles are compressed using bzip2). |
|
483 | ||
496 |
|
484 | The bundle file can then be transferred using conventional means and | ||
497 | The bundle file can then be transferred using conventional means |
|
485 | applied to another repository with the unbundle or pull command. This is | |
498 | and applied to another repository with the unbundle or pull |
|
486 | useful when direct push and pull are not available or when exporting an | |
499 | command. This is useful when direct push and pull are not |
|
487 | entire repository is undesirable. | |
500 | available or when exporting an entire repository is undesirable. |
|
488 | ||
501 |
|
489 | Applying bundles preserves all changeset contents including permissions, | ||
502 | Applying bundles preserves all changeset contents including |
|
490 | copy/rename information, and revision history. | |
503 | permissions, copy/rename information, and revision history. |
|
|||
504 | """ |
|
491 | """ | |
505 | revs = opts.get('rev') or None |
|
492 | revs = opts.get('rev') or None | |
506 | if revs: |
|
493 | if revs: | |
@@ -557,13 +544,13 b' def bundle(ui, repo, fname, dest=None, *' | |||||
557 | def cat(ui, repo, file1, *pats, **opts): |
|
544 | def cat(ui, repo, file1, *pats, **opts): | |
558 | """output the current or given revision of files |
|
545 | """output the current or given revision of files | |
559 |
|
546 | |||
560 | Print the specified files as they were at the given revision. If |
|
547 | Print the specified files as they were at the given revision. If no | |
561 |
|
|
548 | revision is given, the parent of the working directory is used, or tip if | |
562 |
|
|
549 | no revision is checked out. | |
563 |
|
550 | |||
564 | Output may be to a file, in which case the name of the file is |
|
551 | Output may be to a file, in which case the name of the file is given using | |
565 |
|
|
552 | a format string. The formatting rules are the same as for the export | |
566 |
|
|
553 | command, with the following additions: | |
567 |
|
554 | |||
568 | %s basename of file being printed |
|
555 | %s basename of file being printed | |
569 | %d dirname of file being printed, or '.' if in repository root |
|
556 | %d dirname of file being printed, or '.' if in repository root | |
@@ -586,47 +573,42 b' def clone(ui, source, dest=None, **opts)' | |||||
586 |
|
573 | |||
587 | Create a copy of an existing repository in a new directory. |
|
574 | Create a copy of an existing repository in a new directory. | |
588 |
|
575 | |||
589 | If no destination directory name is specified, it defaults to the |
|
576 | If no destination directory name is specified, it defaults to the basename | |
590 |
|
|
577 | of the source. | |
591 |
|
578 | |||
592 | The location of the source is added to the new repository's |
|
579 | The location of the source is added to the new repository's .hg/hgrc file, | |
593 |
|
|
580 | as the default to be used for future pulls. | |
594 |
|
581 | |||
595 | If you use the -r/--rev option to clone up to a specific revision, |
|
582 | If you use the -r/--rev option to clone up to a specific revision, no | |
596 |
|
|
583 | subsequent revisions (including subsequent tags) will be present in the | |
597 |
|
|
584 | cloned repository. This option implies --pull, even on local repositories. | |
598 | on local repositories. |
|
585 | ||
599 |
|
586 | By default, clone will check out the head of the 'default' branch. If the | ||
600 | By default, clone will check out the head of the 'default' branch. |
|
587 | -U/--noupdate option is used, the new clone will contain only a repository | |
601 | If the -U/--noupdate option is used, the new clone will contain |
|
588 | (.hg) and no working copy (the working copy parent is the null revision). | |
602 | only a repository (.hg) and no working copy (the working copy |
|
|||
603 | parent is the null revision). |
|
|||
604 |
|
589 | |||
605 | See 'hg help urls' for valid source format details. |
|
590 | See 'hg help urls' for valid source format details. | |
606 |
|
591 | |||
607 | It is possible to specify an ssh:// URL as the destination, but no |
|
592 | It is possible to specify an ssh:// URL as the destination, but no | |
608 | .hg/hgrc and working directory will be created on the remote side. |
|
593 | .hg/hgrc and working directory will be created on the remote side. Please | |
609 |
|
|
594 | see 'hg help urls' for important details about ssh:// URLs. | |
610 |
|
595 | |||
611 | For efficiency, hardlinks are used for cloning whenever the source |
|
596 | For efficiency, hardlinks are used for cloning whenever the source and | |
612 |
|
|
597 | destination are on the same filesystem (note this applies only to the | |
613 |
|
|
598 | repository data, not to the checked out files). Some filesystems, such as | |
614 |
|
|
599 | AFS, implement hardlinking incorrectly, but do not report errors. In these | |
615 | do not report errors. In these cases, use the --pull option to |
|
600 | cases, use the --pull option to avoid hardlinking. | |
616 | avoid hardlinking. |
|
601 | ||
617 |
|
602 | In some cases, you can clone repositories and checked out files using full | ||
618 | In some cases, you can clone repositories and checked out files |
|
603 | hardlinks with | |
619 | using full hardlinks with |
|
|||
620 |
|
604 | |||
621 | $ cp -al REPO REPOCLONE |
|
605 | $ cp -al REPO REPOCLONE | |
622 |
|
606 | |||
623 | This is the fastest way to clone, but it is not always safe. The |
|
607 | This is the fastest way to clone, but it is not always safe. The operation | |
624 |
|
|
608 | is not atomic (making sure REPO is not modified during the operation is up | |
625 |
t |
|
609 | to you) and you have to make sure your editor breaks hardlinks (Emacs and | |
626 | breaks hardlinks (Emacs and most Linux Kernel tools do so). Also, |
|
610 | most Linux Kernel tools do so). Also, this is not compatible with certain | |
627 | this is not compatible with certain extensions that place their |
|
611 | extensions that place their metadata under the .hg directory, such as mq. | |
628 | metadata under the .hg directory, such as mq. |
|
|||
629 |
|
||||
630 | """ |
|
612 | """ | |
631 | hg.clone(cmdutil.remoteui(ui, opts), source, dest, |
|
613 | hg.clone(cmdutil.remoteui(ui, opts), source, dest, | |
632 | pull=opts.get('pull'), |
|
614 | pull=opts.get('pull'), | |
@@ -638,17 +620,17 b' def commit(ui, repo, *pats, **opts):' | |||||
638 | """commit the specified files or all outstanding changes |
|
620 | """commit the specified files or all outstanding changes | |
639 |
|
621 | |||
640 | Commit changes to the given files into the repository. Unlike a |
|
622 | Commit changes to the given files into the repository. Unlike a | |
641 | centralized RCS, this operation is a local operation. See hg push |
|
623 | centralized RCS, this operation is a local operation. See hg push for a | |
642 |
|
|
624 | way to actively distribute your changes. | |
643 |
|
625 | |||
644 | If a list of files is omitted, all changes reported by "hg status" |
|
626 | If a list of files is omitted, all changes reported by "hg status" will be | |
645 |
|
|
627 | committed. | |
646 |
|
628 | |||
647 | If you are committing the result of a merge, do not provide any |
|
629 | If you are committing the result of a merge, do not provide any filenames | |
648 |
|
|
630 | or -I/-X filters. | |
649 |
|
631 | |||
650 | If no commit message is specified, the configured editor is |
|
632 | If no commit message is specified, the configured editor is started to | |
651 |
|
|
633 | prompt you for a message. | |
652 |
|
634 | |||
653 | See 'hg help dates' for a list of formats valid for -d/--date. |
|
635 | See 'hg help dates' for a list of formats valid for -d/--date. | |
654 | """ |
|
636 | """ | |
@@ -686,16 +668,16 b' def commit(ui, repo, *pats, **opts):' | |||||
686 | def copy(ui, repo, *pats, **opts): |
|
668 | def copy(ui, repo, *pats, **opts): | |
687 | """mark files as copied for the next commit |
|
669 | """mark files as copied for the next commit | |
688 |
|
670 | |||
689 | Mark dest as having copies of source files. If dest is a |
|
671 | Mark dest as having copies of source files. If dest is a directory, copies | |
690 |
|
|
672 | are put in that directory. If dest is a file, the source must be a single | |
691 | the source must be a single file. |
|
673 | file. | |
692 |
|
674 | |||
693 | By default, this command copies the contents of files as they |
|
675 | By default, this command copies the contents of files as they exist in the | |
694 |
|
|
676 | working directory. If invoked with -A/--after, the operation is recorded, | |
695 |
|
|
677 | but no copying is performed. | |
696 |
|
678 | |||
697 | This command takes effect with the next commit. To undo a copy |
|
679 | This command takes effect with the next commit. To undo a copy before | |
698 |
|
|
680 | that, see hg revert. | |
699 | """ |
|
681 | """ | |
700 | wlock = repo.wlock(False) |
|
682 | wlock = repo.wlock(False) | |
701 | try: |
|
683 | try: | |
@@ -798,14 +780,14 b' def showconfig(ui, repo, *values, **opts' | |||||
798 |
|
780 | |||
799 | With no arguments, print names and values of all config items. |
|
781 | With no arguments, print names and values of all config items. | |
800 |
|
782 | |||
801 | With one argument of the form section.name, print just the value |
|
783 | With one argument of the form section.name, print just the value of that | |
802 |
|
|
784 | config item. | |
803 |
|
785 | |||
804 | With multiple arguments, print names and values of all config |
|
786 | With multiple arguments, print names and values of all config items with | |
805 |
|
|
787 | matching section names. | |
806 |
|
788 | |||
807 | With --debug, the source (filename and line number) is printed |
|
789 | With --debug, the source (filename and line number) is printed for each | |
808 |
|
|
790 | config item. | |
809 | """ |
|
791 | """ | |
810 |
|
792 | |||
811 | untrusted = bool(opts.get('untrusted')) |
|
793 | untrusted = bool(opts.get('untrusted')) | |
@@ -832,8 +814,8 b' def showconfig(ui, repo, *values, **opts' | |||||
832 | def debugsetparents(ui, repo, rev1, rev2=None): |
|
814 | def debugsetparents(ui, repo, rev1, rev2=None): | |
833 | """manually set the parents of the current working directory |
|
815 | """manually set the parents of the current working directory | |
834 |
|
816 | |||
835 | This is useful for writing repository conversion tools, but should |
|
817 | This is useful for writing repository conversion tools, but should be used | |
836 |
|
|
818 | with care. | |
837 | """ |
|
819 | """ | |
838 |
|
820 | |||
839 | if not rev2: |
|
821 | if not rev2: | |
@@ -1067,22 +1049,21 b' def diff(ui, repo, *pats, **opts):' | |||||
1067 |
|
1049 | |||
1068 | Differences between files are shown using the unified diff format. |
|
1050 | Differences between files are shown using the unified diff format. | |
1069 |
|
1051 | |||
1070 | NOTE: diff may generate unexpected results for merges, as it will |
|
1052 | NOTE: diff may generate unexpected results for merges, as it will default | |
1071 |
|
|
1053 | to comparing against the working directory's first parent changeset if no | |
1072 |
|
|
1054 | revisions are specified. | |
1073 |
|
1055 | |||
1074 | When two revision arguments are given, then changes are shown |
|
1056 | When two revision arguments are given, then changes are shown between | |
1075 |
|
|
1057 | those revisions. If only one revision is specified then that revision is | |
1076 |
|
|
1058 | compared to the working directory, and, when no revisions are specified, | |
1077 |
|
|
1059 | the working directory files are compared to its parent. | |
1078 | to its parent. |
|
1060 | ||
1079 |
|
1061 | Without the -a/--text option, diff will avoid generating diffs of files it | ||
1080 | Without the -a/--text option, diff will avoid generating diffs of |
|
1062 | detects as binary. With -a, diff will generate a diff anyway, probably | |
1081 | files it detects as binary. With -a, diff will generate a diff |
|
1063 | with undesirable results. | |
1082 | anyway, probably with undesirable results. |
|
1064 | ||
1083 |
|
1065 | Use the -g/--git option to generate diffs in the git extended diff format. | ||
1084 | Use the -g/--git option to generate diffs in the git extended diff |
|
1066 | For more information, read 'hg help diffs'. | |
1085 | format. For more information, read 'hg help diffs'. |
|
|||
1086 | """ |
|
1067 | """ | |
1087 |
|
1068 | |||
1088 | revs = opts.get('rev') |
|
1069 | revs = opts.get('rev') | |
@@ -1107,15 +1088,14 b' def export(ui, repo, *changesets, **opts' | |||||
1107 |
|
1088 | |||
1108 | Print the changeset header and diffs for one or more revisions. |
|
1089 | Print the changeset header and diffs for one or more revisions. | |
1109 |
|
1090 | |||
1110 | The information shown in the changeset header is: author, |
|
1091 | The information shown in the changeset header is: author, changeset hash, | |
1111 |
|
|
1092 | parent(s) and commit comment. | |
1112 |
|
1093 | |||
1113 | NOTE: export may generate unexpected diff output for merge |
|
1094 | NOTE: export may generate unexpected diff output for merge changesets, as | |
1114 |
|
|
1095 | it will compare the merge changeset against its first parent only. | |
1115 | first parent only. |
|
1096 | ||
1116 |
|
1097 | Output may be to a file, in which case the name of the file is given using | ||
1117 | Output may be to a file, in which case the name of the file is |
|
1098 | a format string. The formatting rules are as follows: | |
1118 | given using a format string. The formatting rules are as follows: |
|
|||
1119 |
|
1099 | |||
1120 | %% literal "%" character |
|
1100 | %% literal "%" character | |
1121 | %H changeset hash (40 bytes of hexadecimal) |
|
1101 | %H changeset hash (40 bytes of hexadecimal) | |
@@ -1126,15 +1106,15 b' def export(ui, repo, *changesets, **opts' | |||||
1126 | %n zero-padded sequence number, starting at 1 |
|
1106 | %n zero-padded sequence number, starting at 1 | |
1127 | %r zero-padded changeset revision number |
|
1107 | %r zero-padded changeset revision number | |
1128 |
|
1108 | |||
1129 | Without the -a/--text option, export will avoid generating diffs |
|
1109 | Without the -a/--text option, export will avoid generating diffs of files | |
1130 |
|
|
1110 | it detects as binary. With -a, export will generate a diff anyway, | |
1131 |
|
|
1111 | probably with undesirable results. | |
1132 |
|
1112 | |||
1133 | Use the -g/--git option to generate diffs in the git extended diff |
|
1113 | Use the -g/--git option to generate diffs in the git extended diff format. | |
1134 |
|
|
1114 | See 'hg help diffs' for more information. | |
1135 |
|
1115 | |||
1136 | With the --switch-parent option, the diff will be against the |
|
1116 | With the --switch-parent option, the diff will be against the second | |
1137 |
|
|
1117 | parent. It can be useful to review a merge. | |
1138 | """ |
|
1118 | """ | |
1139 | if not changesets: |
|
1119 | if not changesets: | |
1140 | raise util.Abort(_("export requires at least one changeset")) |
|
1120 | raise util.Abort(_("export requires at least one changeset")) | |
@@ -1150,12 +1130,11 b' def export(ui, repo, *changesets, **opts' | |||||
1150 | def forget(ui, repo, *pats, **opts): |
|
1130 | def forget(ui, repo, *pats, **opts): | |
1151 | """forget the specified files on the next commit |
|
1131 | """forget the specified files on the next commit | |
1152 |
|
1132 | |||
1153 | Mark the specified files so they will no longer be tracked |
|
1133 | Mark the specified files so they will no longer be tracked after the next | |
1154 | after the next commit. |
|
1134 | commit. | |
1155 |
|
1135 | |||
1156 | This only removes files from the current branch, not from the |
|
1136 | This only removes files from the current branch, not from the entire | |
1157 |
|
|
1137 | project history, and it does not delete them from the working directory. | |
1158 | working directory. |
|
|||
1159 |
|
1138 | |||
1160 | To undo a forget before the next commit, see hg add. |
|
1139 | To undo a forget before the next commit, see hg add. | |
1161 | """ |
|
1140 | """ | |
@@ -1184,15 +1163,13 b' def grep(ui, repo, pattern, *pats, **opt' | |||||
1184 | Search revisions of files for a regular expression. |
|
1163 | Search revisions of files for a regular expression. | |
1185 |
|
1164 | |||
1186 | This command behaves differently than Unix grep. It only accepts |
|
1165 | This command behaves differently than Unix grep. It only accepts | |
1187 | Python/Perl regexps. It searches repository history, not the |
|
1166 | Python/Perl regexps. It searches repository history, not the working | |
1188 |
|
|
1167 | directory. It always prints the revision number in which a match appears. | |
1189 | match appears. |
|
1168 | ||
1190 |
|
1169 | By default, grep only prints output for the first revision of a file in | ||
1191 | By default, grep only prints output for the first revision of a |
|
1170 | which it finds a match. To get it to print every revision that contains a | |
1192 | file in which it finds a match. To get it to print every revision |
|
1171 | change in match status ("-" for a match that becomes a non-match, or "+" | |
1193 | that contains a change in match status ("-" for a match that |
|
1172 | for a non-match that becomes a match), use the --all flag. | |
1194 | becomes a non-match, or "+" for a non-match that becomes a match), |
|
|||
1195 | use the --all flag. |
|
|||
1196 | """ |
|
1173 | """ | |
1197 | reflags = 0 |
|
1174 | reflags = 0 | |
1198 | if opts.get('ignore_case'): |
|
1175 | if opts.get('ignore_case'): | |
@@ -1366,23 +1343,23 b' def heads(ui, repo, *branchrevs, **opts)' | |||||
1366 |
|
1343 | |||
1367 | With no arguments, show all repository head changesets. |
|
1344 | With no arguments, show all repository head changesets. | |
1368 |
|
1345 | |||
1369 | Repository "heads" are changesets that don't have child |
|
1346 | Repository "heads" are changesets that don't have child changesets. They | |
1370 |
|
|
1347 | are where development generally takes place and are the usual targets for | |
1371 |
|
|
1348 | update and merge operations. | |
1372 |
|
1349 | |||
1373 | If one or more REV is given, the "branch heads" will be shown for |
|
1350 | If one or more REV is given, the "branch heads" will be shown for the | |
1374 |
|
|
1351 | named branch associated with that revision. The name of the branch is | |
1375 |
|
|
1352 | called the revision's branch tag. | |
1376 |
|
1353 | |||
1377 | Branch heads are revisions on a given named branch that do not have |
|
1354 | Branch heads are revisions on a given named branch that do not have any | |
1378 |
|
|
1355 | descendants on the same branch. A branch head could be a true head or it | |
1379 |
|
|
1356 | could be the last changeset on a branch before a new branch was created. | |
1380 |
|
|
1357 | If none of the branch heads are true heads, the branch is considered | |
1381 |
i |
|
1358 | inactive. If -c/--closed is specified, also show branch heads marked | |
1382 |
|
|
1359 | closed (see hg commit --close-branch). | |
1383 |
|
1360 | |||
1384 | If STARTREV is specified only those heads (or branch heads) that |
|
1361 | If STARTREV is specified only those heads (or branch heads) that are | |
1385 |
|
|
1362 | descendants of STARTREV will be displayed. | |
1386 | """ |
|
1363 | """ | |
1387 | if opts.get('rev'): |
|
1364 | if opts.get('rev'): | |
1388 | start = repo.lookup(opts['rev']) |
|
1365 | start = repo.lookup(opts['rev']) | |
@@ -1428,8 +1405,8 b' def help_(ui, name=None, with_version=Fa' | |||||
1428 |
|
1405 | |||
1429 | With no arguments, print a list of commands with short help messages. |
|
1406 | With no arguments, print a list of commands with short help messages. | |
1430 |
|
1407 | |||
1431 | Given a topic, extension, or command name, print help for that |
|
1408 | Given a topic, extension, or command name, print help for that topic. | |
1432 |
|
|
1409 | """ | |
1433 | option_lists = [] |
|
1410 | option_lists = [] | |
1434 |
|
1411 | |||
1435 | def addglobalopts(aliases): |
|
1412 | def addglobalopts(aliases): | |
@@ -1637,16 +1614,15 b' def identify(ui, repo, source=None,' | |||||
1637 | rev=None, num=None, id=None, branch=None, tags=None): |
|
1614 | rev=None, num=None, id=None, branch=None, tags=None): | |
1638 | """identify the working copy or specified revision |
|
1615 | """identify the working copy or specified revision | |
1639 |
|
1616 | |||
1640 | With no revision, print a summary of the current state of the |
|
1617 | With no revision, print a summary of the current state of the repository. | |
1641 | repository. |
|
1618 | ||
1642 |
|
1619 | Specifying a path to a repository root or Mercurial bundle will cause | ||
1643 | Specifying a path to a repository root or Mercurial bundle will |
|
1620 | lookup to operate on that repository/bundle. | |
1644 | cause lookup to operate on that repository/bundle. |
|
1621 | ||
1645 |
|
1622 | This summary identifies the repository state using one or two parent hash | ||
1646 | This summary identifies the repository state using one or two |
|
1623 | identifiers, followed by a "+" if there are uncommitted changes in the | |
1647 | parent hash identifiers, followed by a "+" if there are |
|
1624 | working directory, a list of tags for this revision and a branch name for | |
1648 | uncommitted changes in the working directory, a list of tags for |
|
1625 | non-default branches. | |
1649 | this revision and a branch name for non-default branches. |
|
|||
1650 | """ |
|
1626 | """ | |
1651 |
|
1627 | |||
1652 | if not repo and not source: |
|
1628 | if not repo and not source: | |
@@ -1713,33 +1689,31 b' def import_(ui, repo, patch1, *patches, ' | |||||
1713 |
|
1689 | |||
1714 | Import a list of patches and commit them individually. |
|
1690 | Import a list of patches and commit them individually. | |
1715 |
|
1691 | |||
1716 | If there are outstanding changes in the working directory, import |
|
1692 | If there are outstanding changes in the working directory, import will | |
1717 |
|
|
1693 | abort unless given the -f/--force flag. | |
1718 |
|
1694 | |||
1719 | You can import a patch straight from a mail message. Even patches |
|
1695 | You can import a patch straight from a mail message. Even patches as | |
1720 |
a |
|
1696 | attachments work (to use the body part, it must have type text/plain or | |
1721 |
text/ |
|
1697 | text/x-patch). From and Subject headers of email message are used as | |
1722 |
|
|
1698 | default committer and commit message. All text/plain body parts before | |
1723 |
|
|
1699 | first diff are added to commit message. | |
1724 | message. |
|
1700 | ||
1725 |
|
1701 | If the imported patch was generated by hg export, user and description | ||
1726 | If the imported patch was generated by hg export, user and |
|
1702 | from patch override values from message headers and body. Values given on | |
1727 | description from patch override values from message headers and |
|
1703 | command line with -m/--message and -u/--user override these. | |
1728 | body. Values given on command line with -m/--message and -u/--user |
|
1704 | ||
1729 | override these. |
|
1705 | If --exact is specified, import will set the working directory to the | |
1730 |
|
1706 | parent of each patch before applying it, and will abort if the resulting | ||
1731 | If --exact is specified, import will set the working directory to |
|
1707 | changeset has a different ID than the one recorded in the patch. This may | |
1732 | the parent of each patch before applying it, and will abort if the |
|
1708 | happen due to character set problems or other deficiencies in the text | |
1733 | resulting changeset has a different ID than the one recorded in |
|
1709 | patch format. | |
1734 | the patch. This may happen due to character set problems or other |
|
1710 | ||
1735 | deficiencies in the text patch format. |
|
1711 | With -s/--similarity, hg will attempt to discover renames and copies in | |
1736 |
|
1712 | the patch in the same way as 'addremove'. | ||
1737 | With -s/--similarity, hg will attempt to discover renames and |
|
1713 | ||
1738 | copies in the patch in the same way as 'addremove'. |
|
1714 | To read a patch from standard input, use "-" as the patch name. If a URL | |
1739 |
|
1715 | is specified, the patch will be downloaded from it. See 'hg help dates' | ||
1740 | To read a patch from standard input, use "-" as the patch name. If |
|
1716 | for a list of formats valid for -d/--date. | |
1741 | a URL is specified, the patch will be downloaded from it. |
|
|||
1742 | See 'hg help dates' for a list of formats valid for -d/--date. |
|
|||
1743 | """ |
|
1717 | """ | |
1744 | patches = (patch1,) + patches |
|
1718 | patches = (patch1,) + patches | |
1745 |
|
1719 | |||
@@ -1839,12 +1813,12 b' def import_(ui, repo, patch1, *patches, ' | |||||
1839 | def incoming(ui, repo, source="default", **opts): |
|
1813 | def incoming(ui, repo, source="default", **opts): | |
1840 | """show new changesets found in source |
|
1814 | """show new changesets found in source | |
1841 |
|
1815 | |||
1842 | Show new changesets found in the specified path/URL or the default |
|
1816 | Show new changesets found in the specified path/URL or the default pull | |
1843 |
|
|
1817 | location. These are the changesets that would have been pulled if a pull | |
1844 |
|
|
1818 | at the time you issued this command. | |
1845 |
|
1819 | |||
1846 | For remote repository, using --bundle avoids downloading the |
|
1820 | For remote repository, using --bundle avoids downloading the changesets | |
1847 |
|
|
1821 | twice if the incoming is followed by a pull. | |
1848 |
|
1822 | |||
1849 | See pull for valid source format details. |
|
1823 | See pull for valid source format details. | |
1850 | """ |
|
1824 | """ | |
@@ -1908,33 +1882,33 b' def incoming(ui, repo, source="default",' | |||||
1908 | def init(ui, dest=".", **opts): |
|
1882 | def init(ui, dest=".", **opts): | |
1909 | """create a new repository in the given directory |
|
1883 | """create a new repository in the given directory | |
1910 |
|
1884 | |||
1911 | Initialize a new repository in the given directory. If the given |
|
1885 | Initialize a new repository in the given directory. If the given directory | |
1912 |
d |
|
1886 | does not exist, it will be created. | |
1913 |
|
1887 | |||
1914 | If no directory is given, the current directory is used. |
|
1888 | If no directory is given, the current directory is used. | |
1915 |
|
1889 | |||
1916 | It is possible to specify an ssh:// URL as the destination. |
|
1890 | It is possible to specify an ssh:// URL as the destination. See 'hg help | |
1917 |
|
|
1891 | urls' for more information. | |
1918 | """ |
|
1892 | """ | |
1919 | hg.repository(cmdutil.remoteui(ui, opts), dest, create=1) |
|
1893 | hg.repository(cmdutil.remoteui(ui, opts), dest, create=1) | |
1920 |
|
1894 | |||
1921 | def locate(ui, repo, *pats, **opts): |
|
1895 | def locate(ui, repo, *pats, **opts): | |
1922 | """locate files matching specific patterns |
|
1896 | """locate files matching specific patterns | |
1923 |
|
1897 | |||
1924 | Print files under Mercurial control in the working directory whose |
|
1898 | Print files under Mercurial control in the working directory whose names | |
1925 |
|
|
1899 | match the given patterns. | |
1926 |
|
1900 | |||
1927 | By default, this command searches all directories in the working |
|
1901 | By default, this command searches all directories in the working | |
1928 | directory. To search just the current directory and its |
|
1902 | directory. To search just the current directory and its subdirectories, | |
1929 |
|
|
1903 | use "--include .". | |
1930 |
|
1904 | |||
1931 | If no patterns are given to match, this command prints the names |
|
1905 | If no patterns are given to match, this command prints the names of all | |
1932 |
|
|
1906 | files under Mercurial control in the working directory. | |
1933 |
|
1907 | |||
1934 | If you want to feed the output of this command into the "xargs" |
|
1908 | If you want to feed the output of this command into the "xargs" command, | |
1935 |
|
|
1909 | use the -0 option to both this command and "xargs". This will avoid the | |
1936 |
|
|
1910 | problem of "xargs" treating single filenames that contain whitespace as | |
1937 |
|
|
1911 | multiple filenames. | |
1938 | """ |
|
1912 | """ | |
1939 | end = opts.get('print0') and '\0' or '\n' |
|
1913 | end = opts.get('print0') and '\0' or '\n' | |
1940 | rev = opts.get('rev') or None |
|
1914 | rev = opts.get('rev') or None | |
@@ -1956,30 +1930,29 b' def locate(ui, repo, *pats, **opts):' | |||||
1956 | def log(ui, repo, *pats, **opts): |
|
1930 | def log(ui, repo, *pats, **opts): | |
1957 | """show revision history of entire repository or files |
|
1931 | """show revision history of entire repository or files | |
1958 |
|
1932 | |||
1959 | Print the revision history of the specified files or the entire |
|
1933 | Print the revision history of the specified files or the entire project. | |
1960 | project. |
|
1934 | ||
1961 |
|
1935 | File history is shown without following rename or copy history of files. | ||
1962 | File history is shown without following rename or copy history of |
|
1936 | Use -f/--follow with a filename to follow history across renames and | |
1963 |
|
|
1937 | copies. --follow without a filename will only show ancestors or | |
1964 | renames and copies. --follow without a filename will only show |
|
1938 | descendants of the starting revision. --follow-first only follows the | |
1965 | ancestors or descendants of the starting revision. --follow-first |
|
1939 | first parent of merge revisions. | |
1966 | only follows the first parent of merge revisions. |
|
1940 | ||
1967 |
|
1941 | If no revision range is specified, the default is tip:0 unless --follow is | ||
1968 | If no revision range is specified, the default is tip:0 unless |
|
1942 | set, in which case the working directory parent is used as the starting | |
1969 | --follow is set, in which case the working directory parent is |
|
1943 | revision. | |
1970 | used as the starting revision. |
|
|||
1971 |
|
1944 | |||
1972 | See 'hg help dates' for a list of formats valid for -d/--date. |
|
1945 | See 'hg help dates' for a list of formats valid for -d/--date. | |
1973 |
|
1946 | |||
1974 | By default this command prints revision number and changeset id, |
|
1947 | By default this command prints revision number and changeset id, tags, | |
1975 |
|
|
1948 | non-trivial parents, user, date and time, and a summary for each commit. | |
1976 |
|
|
1949 | When the -v/--verbose switch is used, the list of changed files and full | |
1977 |
c |
|
1950 | commit message are shown. | |
1978 |
|
1951 | |||
1979 | NOTE: log -p/--patch may generate unexpected diff output for merge |
|
1952 | NOTE: log -p/--patch may generate unexpected diff output for merge | |
1980 | changesets, as it will only compare the merge changeset against |
|
1953 | changesets, as it will only compare the merge changeset against its first | |
1981 |
|
|
1954 | parent. Also, only files different from BOTH parents will appear in | |
1982 | will appear in files:. |
|
1955 | files:. | |
1983 | """ |
|
1956 | """ | |
1984 |
|
1957 | |||
1985 | get = util.cachefunc(lambda r: repo[r].changeset()) |
|
1958 | get = util.cachefunc(lambda r: repo[r].changeset()) | |
@@ -2082,9 +2055,9 b' def log(ui, repo, *pats, **opts):' | |||||
2082 | def manifest(ui, repo, node=None, rev=None): |
|
2055 | def manifest(ui, repo, node=None, rev=None): | |
2083 | """output the current or given revision of the project manifest |
|
2056 | """output the current or given revision of the project manifest | |
2084 |
|
2057 | |||
2085 | Print a list of version controlled files for the given revision. |
|
2058 | Print a list of version controlled files for the given revision. If no | |
2086 |
|
|
2059 | revision is given, the first parent of the working directory is used, or | |
2087 |
|
|
2060 | the null revision if no revision is checked out. | |
2088 |
|
2061 | |||
2089 | With -v, print file permissions, symlink and executable bits. |
|
2062 | With -v, print file permissions, symlink and executable bits. | |
2090 | With --debug, print file revision hashes. |
|
2063 | With --debug, print file revision hashes. | |
@@ -2108,18 +2081,17 b' def manifest(ui, repo, node=None, rev=No' | |||||
2108 | def merge(ui, repo, node=None, **opts): |
|
2081 | def merge(ui, repo, node=None, **opts): | |
2109 | """merge working directory with another revision |
|
2082 | """merge working directory with another revision | |
2110 |
|
2083 | |||
2111 | The current working directory is updated with all changes made in |
|
2084 | The current working directory is updated with all changes made in the | |
2112 |
|
|
2085 | requested revision since the last common predecessor revision. | |
2113 |
|
2086 | |||
2114 | Files that changed between either parent are marked as changed for |
|
2087 | Files that changed between either parent are marked as changed for the | |
2115 |
|
|
2088 | next commit and a commit must be performed before any further updates to | |
2116 |
|
|
2089 | the repository are allowed. The next commit will have two parents. | |
2117 | two parents. |
|
2090 | ||
2118 |
|
2091 | If no revision is specified, the working directory's parent is a head | ||
2119 | If no revision is specified, the working directory's parent is a |
|
2092 | revision, and the current branch contains exactly one other head, the | |
2120 | head revision, and the current branch contains exactly one other |
|
2093 | other head is merged with by default. Otherwise, an explicit revision with | |
2121 | head, the other head is merged with by default. Otherwise, an |
|
2094 | which to merge with must be provided. | |
2122 | explicit revision with which to merge with must be provided. |
|
|||
2123 | """ |
|
2095 | """ | |
2124 |
|
2096 | |||
2125 | if opts.get('rev') and node: |
|
2097 | if opts.get('rev') and node: | |
@@ -2166,9 +2138,9 b' def merge(ui, repo, node=None, **opts):' | |||||
2166 | def outgoing(ui, repo, dest=None, **opts): |
|
2138 | def outgoing(ui, repo, dest=None, **opts): | |
2167 | """show changesets not found in destination |
|
2139 | """show changesets not found in destination | |
2168 |
|
2140 | |||
2169 | Show changesets not found in the specified destination repository |
|
2141 | Show changesets not found in the specified destination repository or the | |
2170 |
|
|
2142 | default push location. These are the changesets that would be pushed if a | |
2171 |
|
|
2143 | push was requested. | |
2172 |
|
2144 | |||
2173 | See pull for valid destination format details. |
|
2145 | See pull for valid destination format details. | |
2174 | """ |
|
2146 | """ | |
@@ -2201,11 +2173,10 b' def outgoing(ui, repo, dest=None, **opts' | |||||
2201 | def parents(ui, repo, file_=None, **opts): |
|
2173 | def parents(ui, repo, file_=None, **opts): | |
2202 | """show the parents of the working directory or revision |
|
2174 | """show the parents of the working directory or revision | |
2203 |
|
2175 | |||
2204 | Print the working directory's parent revisions. If a revision is |
|
2176 | Print the working directory's parent revisions. If a revision is given via | |
2205 |
|
|
2177 | -r/--rev, the parent of that revision will be printed. If a file argument | |
2206 |
|
|
2178 | is given, the revision in which the file was last changed (before the | |
2207 | last changed (before the working directory revision or the |
|
2179 | working directory revision or the argument to --rev if given) is printed. | |
2208 | argument to --rev if given) is printed. |
|
|||
2209 | """ |
|
2180 | """ | |
2210 | rev = opts.get('rev') |
|
2181 | rev = opts.get('rev') | |
2211 | if rev: |
|
2182 | if rev: | |
@@ -2241,11 +2212,11 b' def parents(ui, repo, file_=None, **opts' | |||||
2241 | def paths(ui, repo, search=None): |
|
2212 | def paths(ui, repo, search=None): | |
2242 | """show aliases for remote repositories |
|
2213 | """show aliases for remote repositories | |
2243 |
|
2214 | |||
2244 | Show definition of symbolic path name NAME. If no name is given, |
|
2215 | Show definition of symbolic path name NAME. If no name is given, show | |
2245 |
|
|
2216 | definition of all available names. | |
2246 |
|
2217 | |||
2247 | Path names are defined in the [paths] section of /etc/mercurial/hgrc |
|
2218 | Path names are defined in the [paths] section of /etc/mercurial/hgrc and | |
2248 |
|
|
2219 | $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too. | |
2249 |
|
2220 | |||
2250 | See 'hg help urls' for more information. |
|
2221 | See 'hg help urls' for more information. | |
2251 | """ |
|
2222 | """ | |
@@ -2278,18 +2249,18 b' def pull(ui, repo, source="default", **o' | |||||
2278 |
|
2249 | |||
2279 | Pull changes from a remote repository to a local one. |
|
2250 | Pull changes from a remote repository to a local one. | |
2280 |
|
2251 | |||
2281 | This finds all changes from the repository at the specified path |
|
2252 | This finds all changes from the repository at the specified path or URL | |
2282 |
|
|
2253 | and adds them to a local repository (the current one unless -R is | |
2283 |
|
|
2254 | specified). By default, this does not update the copy of the project in | |
2284 |
|
|
2255 | the working directory. | |
2285 |
|
2256 | |||
2286 | Use hg incoming if you want to see what would have been added by a |
|
2257 | Use hg incoming if you want to see what would have been added by a pull at | |
2287 |
|
|
2258 | the time you issued this command. If you then decide to added those | |
2288 |
|
|
2259 | changes to the repository, you should use pull -r X where X is the last | |
2289 |
|
|
2260 | changeset listed by hg incoming. | |
2290 |
|
2261 | |||
2291 | If SOURCE is omitted, the 'default' path will be used. |
|
2262 | If SOURCE is omitted, the 'default' path will be used. See 'hg help urls' | |
2292 |
|
|
2263 | for more information. | |
2293 | """ |
|
2264 | """ | |
2294 | source, revs, checkout = hg.parseurl(ui.expandpath(source), opts.get('rev')) |
|
2265 | source, revs, checkout = hg.parseurl(ui.expandpath(source), opts.get('rev')) | |
2295 | other = hg.repository(cmdutil.remoteui(repo, opts), source) |
|
2266 | other = hg.repository(cmdutil.remoteui(repo, opts), source) | |
@@ -2310,20 +2281,19 b' def push(ui, repo, dest=None, **opts):' | |||||
2310 |
|
2281 | |||
2311 | Push changes from the local repository to the given destination. |
|
2282 | Push changes from the local repository to the given destination. | |
2312 |
|
2283 | |||
2313 | This is the symmetrical operation for pull. It moves changes from |
|
2284 | This is the symmetrical operation for pull. It moves changes from the | |
2314 |
|
|
2285 | current repository to a different one. If the destination is local this is | |
2315 |
|
|
2286 | identical to a pull in that directory from the current one. | |
2316 | current one. |
|
|||
2317 |
|
2287 | |||
2318 | By default, push will refuse to run if it detects the result would |
|
2288 | By default, push will refuse to run if it detects the result would | |
2319 | increase the number of remote heads. This generally indicates the |
|
2289 | increase the number of remote heads. This generally indicates the user | |
2320 |
|
|
2290 | forgot to pull and merge before pushing. | |
2321 |
|
2291 | |||
2322 | If -r/--rev is used, the named revision and all its ancestors will |
|
2292 | If -r/--rev is used, the named revision and all its ancestors will be | |
2323 |
|
|
2293 | pushed to the remote repository. | |
2324 |
|
2294 | |||
2325 | Please see 'hg help urls' for important details about ssh:// |
|
2295 | Please see 'hg help urls' for important details about ssh:// URLs. If | |
2326 |
|
|
2296 | DESTINATION is omitted, a default path will be used. | |
2327 | """ |
|
2297 | """ | |
2328 | dest, revs, checkout = hg.parseurl( |
|
2298 | dest, revs, checkout = hg.parseurl( | |
2329 | ui.expandpath(dest or 'default-push', dest or 'default'), opts.get('rev')) |
|
2299 | ui.expandpath(dest or 'default-push', dest or 'default'), opts.get('rev')) | |
@@ -2346,9 +2316,8 b' def recover(ui, repo):' | |||||
2346 |
|
2316 | |||
2347 | Recover from an interrupted commit or pull. |
|
2317 | Recover from an interrupted commit or pull. | |
2348 |
|
2318 | |||
2349 | This command tries to fix the repository status after an |
|
2319 | This command tries to fix the repository status after an interrupted | |
2350 |
|
|
2320 | operation. It should only be necessary when Mercurial suggests it. | |
2351 | suggests it. |
|
|||
2352 | """ |
|
2321 | """ | |
2353 | if repo.recover(): |
|
2322 | if repo.recover(): | |
2354 | return hg.verify(repo) |
|
2323 | return hg.verify(repo) | |
@@ -2359,17 +2328,16 b' def remove(ui, repo, *pats, **opts):' | |||||
2359 |
|
2328 | |||
2360 | Schedule the indicated files for removal from the repository. |
|
2329 | Schedule the indicated files for removal from the repository. | |
2361 |
|
2330 | |||
2362 | This only removes files from the current branch, not from the |
|
2331 | This only removes files from the current branch, not from the entire | |
2363 |
|
|
2332 | project history. -A/--after can be used to remove only files that have | |
2364 |
|
|
2333 | already been deleted, -f/--force can be used to force deletion, and -Af | |
2365 |
|
|
2334 | can be used to remove files from the next revision without deleting them | |
2366 |
|
|
2335 | from the working directory. | |
2367 |
|
2336 | |||
2368 | The following table details the behavior of remove for different |
|
2337 | The following table details the behavior of remove for different file | |
2369 |
|
|
2338 | states (columns) and option combinations (rows). The file states are Added | |
2370 |
|
|
2339 | [A], Clean [C], Modified [M] and Missing [!] (as reported by hg status). | |
2371 | (as reported by hg status). The actions are Warn, Remove (from |
|
2340 | The actions are Warn, Remove (from branch) and Delete (from disk). | |
2372 | branch) and Delete (from disk). |
|
|||
2373 |
|
2341 | |||
2374 | A C M ! |
|
2342 | A C M ! | |
2375 | none W RD W R |
|
2343 | none W RD W R | |
@@ -2377,8 +2345,8 b' def remove(ui, repo, *pats, **opts):' | |||||
2377 | -A W W W R |
|
2345 | -A W W W R | |
2378 | -Af R R R R |
|
2346 | -Af R R R R | |
2379 |
|
2347 | |||
2380 | This command schedules the files to be removed at the next commit. |
|
2348 | This command schedules the files to be removed at the next commit. To undo | |
2381 |
|
|
2349 | a remove before that, see hg revert. | |
2382 | """ |
|
2350 | """ | |
2383 |
|
2351 | |||
2384 | after, force = opts.get('after'), opts.get('force') |
|
2352 | after, force = opts.get('after'), opts.get('force') | |
@@ -2418,16 +2386,16 b' def remove(ui, repo, *pats, **opts):' | |||||
2418 | def rename(ui, repo, *pats, **opts): |
|
2386 | def rename(ui, repo, *pats, **opts): | |
2419 | """rename files; equivalent of copy + remove |
|
2387 | """rename files; equivalent of copy + remove | |
2420 |
|
2388 | |||
2421 | Mark dest as copies of sources; mark sources for deletion. If dest |
|
2389 | Mark dest as copies of sources; mark sources for deletion. If dest is a | |
2422 |
|
|
2390 | directory, copies are put in that directory. If dest is a file, there can | |
2423 |
|
|
2391 | only be one source. | |
2424 |
|
2392 | |||
2425 | By default, this command copies the contents of files as they |
|
2393 | By default, this command copies the contents of files as they exist in the | |
2426 |
|
|
2394 | working directory. If invoked with -A/--after, the operation is recorded, | |
2427 |
|
|
2395 | but no copying is performed. | |
2428 |
|
2396 | |||
2429 | This command takes effect at the next commit. To undo a rename |
|
2397 | This command takes effect at the next commit. To undo a rename before | |
2430 |
|
|
2398 | that, see hg revert. | |
2431 | """ |
|
2399 | """ | |
2432 | wlock = repo.wlock(False) |
|
2400 | wlock = repo.wlock(False) | |
2433 | try: |
|
2401 | try: | |
@@ -2439,16 +2407,16 b' def resolve(ui, repo, *pats, **opts):' | |||||
2439 | """retry file merges from a merge or update |
|
2407 | """retry file merges from a merge or update | |
2440 |
|
2408 | |||
2441 | This command will cleanly retry unresolved file merges using file |
|
2409 | This command will cleanly retry unresolved file merges using file | |
2442 | revisions preserved from the last update or merge. To attempt to |
|
2410 | revisions preserved from the last update or merge. To attempt to resolve | |
2443 |
|
|
2411 | all unresolved files, use the -a/--all switch. | |
2444 |
|
2412 | |||
2445 | If a conflict is resolved manually, please note that the changes |
|
2413 | If a conflict is resolved manually, please note that the changes will be | |
2446 |
|
|
2414 | overwritten if the merge is retried with resolve. The -m/--mark switch | |
2447 |
|
|
2415 | should be used to mark the file as resolved. | |
2448 |
|
2416 | |||
2449 | This command also allows listing resolved files and manually |
|
2417 | This command also allows listing resolved files and manually indicating | |
2450 |
|
|
2418 | whether or not files are resolved. All files must be marked as resolved | |
2451 |
|
|
2419 | before a commit is permitted. | |
2452 |
|
2420 | |||
2453 | The codes used to show the status of files are: |
|
2421 | The codes used to show the status of files are: | |
2454 | U = unresolved |
|
2422 | U = unresolved | |
@@ -2493,35 +2461,33 b' def resolve(ui, repo, *pats, **opts):' | |||||
2493 | def revert(ui, repo, *pats, **opts): |
|
2461 | def revert(ui, repo, *pats, **opts): | |
2494 | """restore individual files or directories to an earlier state |
|
2462 | """restore individual files or directories to an earlier state | |
2495 |
|
2463 | |||
2496 | (Use update -r to check out earlier revisions, revert does not |
|
2464 | (Use update -r to check out earlier revisions, revert does not change the | |
2497 |
|
|
2465 | working directory parents.) | |
2498 |
|
2466 | |||
2499 | With no revision specified, revert the named files or directories |
|
2467 | With no revision specified, revert the named files or directories to the | |
2500 |
|
|
2468 | contents they had in the parent of the working directory. This restores | |
2501 |
|
|
2469 | the contents of the affected files to an unmodified state and unschedules | |
2502 |
|
|
2470 | adds, removes, copies, and renames. If the working directory has two | |
2503 |
|
|
2471 | parents, you must explicitly specify the revision to revert to. | |
2504 | revision to revert to. |
|
2472 | ||
2505 |
|
2473 | Using the -r/--rev option, revert the given files or directories to their | ||
2506 | Using the -r/--rev option, revert the given files or directories |
|
2474 | contents as of a specific revision. This can be helpful to "roll back" | |
2507 | to their contents as of a specific revision. This can be helpful |
|
2475 | some or all of an earlier change. See 'hg help dates' for a list of | |
2508 | to "roll back" some or all of an earlier change. See 'hg help |
|
2476 | formats valid for -d/--date. | |
2509 | dates' for a list of formats valid for -d/--date. |
|
2477 | ||
2510 |
|
2478 | Revert modifies the working directory. It does not commit any changes, or | ||
2511 |
|
|
2479 | change the parent of the working directory. If you revert to a revision | |
2512 |
|
|
2480 | other than the parent of the working directory, the reverted files will | |
2513 | revert to a revision other than the parent of the working |
|
2481 | thus appear modified afterwards. | |
2514 | directory, the reverted files will thus appear modified |
|
2482 | ||
2515 | afterwards. |
|
2483 | If a file has been deleted, it is restored. If the executable mode of a | |
2516 |
|
2484 | file was changed, it is reset. | ||
2517 | If a file has been deleted, it is restored. If the executable mode |
|
2485 | ||
2518 | of a file was changed, it is reset. |
|
2486 | If names are given, all files matching the names are reverted. If no | |
2519 |
|
2487 | arguments are given, no files are reverted. | ||
2520 | If names are given, all files matching the names are reverted. |
|
2488 | ||
2521 | If no arguments are given, no files are reverted. |
|
2489 | Modified files are saved with a .orig suffix before reverting. To disable | |
2522 |
|
2490 | these backups, use --no-backup. | ||
2523 | Modified files are saved with a .orig suffix before reverting. |
|
|||
2524 | To disable these backups, use --no-backup. |
|
|||
2525 | """ |
|
2491 | """ | |
2526 |
|
2492 | |||
2527 | if opts["date"]: |
|
2493 | if opts["date"]: | |
@@ -2710,15 +2676,14 b' def rollback(ui, repo):' | |||||
2710 | """roll back the last transaction |
|
2676 | """roll back the last transaction | |
2711 |
|
2677 | |||
2712 | This command should be used with care. There is only one level of |
|
2678 | This command should be used with care. There is only one level of | |
2713 | rollback, and there is no way to undo a rollback. It will also |
|
2679 | rollback, and there is no way to undo a rollback. It will also restore the | |
2714 |
|
|
2680 | dirstate at the time of the last transaction, losing any dirstate changes | |
2715 |
|
|
2681 | since that time. This command does not alter the working directory. | |
2716 | the working directory. |
|
2682 | ||
2717 |
|
2683 | Transactions are used to encapsulate the effects of all commands that | ||
2718 | Transactions are used to encapsulate the effects of all commands |
|
2684 | create new changesets or propagate existing changesets into a repository. | |
2719 | that create new changesets or propagate existing changesets into a |
|
2685 | For example, the following commands are transactional, and their effects | |
2720 | repository. For example, the following commands are transactional, |
|
2686 | can be rolled back: | |
2721 | and their effects can be rolled back: |
|
|||
2722 |
|
2687 | |||
2723 | commit |
|
2688 | commit | |
2724 | import |
|
2689 | import | |
@@ -2726,12 +2691,12 b' def rollback(ui, repo):' | |||||
2726 | push (with this repository as destination) |
|
2691 | push (with this repository as destination) | |
2727 | unbundle |
|
2692 | unbundle | |
2728 |
|
2693 | |||
2729 | This command is not intended for use on public repositories. Once |
|
2694 | This command is not intended for use on public repositories. Once changes | |
2730 |
|
|
2695 | are visible for pull by other users, rolling a transaction back locally is | |
2731 |
|
|
2696 | ineffective (someone else may already have pulled the changes). | |
2732 |
|
|
2697 | Furthermore, a race is possible with readers of the repository; for | |
2733 |
|
|
2698 | example an in-progress pull from the repository may fail if a rollback is | |
2734 | may fail if a rollback is performed. |
|
2699 | performed. | |
2735 | """ |
|
2700 | """ | |
2736 | repo.rollback() |
|
2701 | repo.rollback() | |
2737 |
|
2702 | |||
@@ -2747,9 +2712,8 b' def serve(ui, repo, **opts):' | |||||
2747 |
|
2712 | |||
2748 | Start a local HTTP repository browser and pull server. |
|
2713 | Start a local HTTP repository browser and pull server. | |
2749 |
|
2714 | |||
2750 | By default, the server logs accesses to stdout and errors to |
|
2715 | By default, the server logs accesses to stdout and errors to stderr. Use | |
2751 |
|
|
2716 | the -A/--accesslog and -E/--errorlog options to log to files. | |
2752 | files. |
|
|||
2753 | """ |
|
2717 | """ | |
2754 |
|
2718 | |||
2755 | if opts["stdio"]: |
|
2719 | if opts["stdio"]: | |
@@ -2810,24 +2774,22 b' def serve(ui, repo, **opts):' | |||||
2810 | def status(ui, repo, *pats, **opts): |
|
2774 | def status(ui, repo, *pats, **opts): | |
2811 | """show changed files in the working directory |
|
2775 | """show changed files in the working directory | |
2812 |
|
2776 | |||
2813 | Show status of files in the repository. If names are given, only |
|
2777 | Show status of files in the repository. If names are given, only files | |
2814 |
|
|
2778 | that match are shown. Files that are clean or ignored or the source of a | |
2815 |
|
|
2779 | copy/move operation, are not listed unless -c/--clean, -i/--ignored, | |
2816 | -c/--clean, -i/--ignored, -C/--copies or -A/--all are given. |
|
2780 | -C/--copies or -A/--all are given. Unless options described with "show | |
2817 | Unless options described with "show only ..." are given, the |
|
2781 | only ..." are given, the options -mardu are used. | |
2818 | options -mardu are used. |
|
2782 | ||
2819 |
|
2783 | Option -q/--quiet hides untracked (unknown and ignored) files unless | ||
2820 | Option -q/--quiet hides untracked (unknown and ignored) files |
|
2784 | explicitly requested with -u/--unknown or -i/--ignored. | |
2821 | unless explicitly requested with -u/--unknown or -i/--ignored. |
|
2785 | ||
2822 |
|
2786 | NOTE: status may appear to disagree with diff if permissions have changed | ||
2823 | NOTE: status may appear to disagree with diff if permissions have |
|
2787 | or a merge has occurred. The standard diff format does not report | |
2824 | changed or a merge has occurred. The standard diff format does not |
|
2788 | permission changes and diff only reports changes relative to one merge | |
2825 | report permission changes and diff only reports changes relative |
|
2789 | parent. | |
2826 | to one merge parent. |
|
2790 | ||
2827 |
|
2791 | If one revision is given, it is used as the base revision. If two | ||
2828 | If one revision is given, it is used as the base revision. |
|
2792 | revisions are given, the differences between them are shown. | |
2829 | If two revisions are given, the differences between them are |
|
|||
2830 | shown. |
|
|||
2831 |
|
2793 | |||
2832 | The codes used to show the status of files are: |
|
2794 | The codes used to show the status of files are: | |
2833 | M = modified |
|
2795 | M = modified | |
@@ -2885,18 +2847,17 b' def tag(ui, repo, name1, *names, **opts)' | |||||
2885 |
|
2847 | |||
2886 | Name a particular revision using <name>. |
|
2848 | Name a particular revision using <name>. | |
2887 |
|
2849 | |||
2888 | Tags are used to name particular revisions of the repository and are |
|
2850 | Tags are used to name particular revisions of the repository and are very | |
2889 |
|
|
2851 | useful to compare different revisions, to go back to significant earlier | |
2890 |
|
|
2852 | versions or to mark branch points as releases, etc. | |
2891 |
|
2853 | |||
2892 | If no revision is given, the parent of the working directory is |
|
2854 | If no revision is given, the parent of the working directory is used, or | |
2893 |
|
|
2855 | tip if no revision is checked out. | |
2894 |
|
2856 | |||
2895 | To facilitate version control, distribution, and merging of tags, |
|
2857 | To facilitate version control, distribution, and merging of tags, they are | |
2896 |
|
|
2858 | stored as a file named ".hgtags" which is managed similarly to other | |
2897 |
|
|
2859 | project files and can be hand-edited if necessary. The file | |
2898 |
|
|
2860 | '.hg/localtags' is used for local tags (not shared among repositories). | |
2899 | shared among repositories). |
|
|||
2900 |
|
2861 | |||
2901 | See 'hg help dates' for a list of formats valid for -d/--date. |
|
2862 | See 'hg help dates' for a list of formats valid for -d/--date. | |
2902 | """ |
|
2863 | """ | |
@@ -2949,8 +2910,8 b' def tag(ui, repo, name1, *names, **opts)' | |||||
2949 | def tags(ui, repo): |
|
2910 | def tags(ui, repo): | |
2950 | """list repository tags |
|
2911 | """list repository tags | |
2951 |
|
2912 | |||
2952 | This lists both regular and local tags. When the -v/--verbose |
|
2913 | This lists both regular and local tags. When the -v/--verbose switch is | |
2953 |
|
|
2914 | used, a third column "local" is printed for local tags. | |
2954 | """ |
|
2915 | """ | |
2955 |
|
2916 | |||
2956 | hexfunc = ui.debugflag and hex or short |
|
2917 | hexfunc = ui.debugflag and hex or short | |
@@ -2978,22 +2939,22 b' def tags(ui, repo):' | |||||
2978 | def tip(ui, repo, **opts): |
|
2939 | def tip(ui, repo, **opts): | |
2979 | """show the tip revision |
|
2940 | """show the tip revision | |
2980 |
|
2941 | |||
2981 | The tip revision (usually just called the tip) is the changeset |
|
2942 | The tip revision (usually just called the tip) is the changeset most | |
2982 |
|
|
2943 | recently added to the repository (and therefore the most recently changed | |
2983 | recently changed head). |
|
2944 | head). | |
2984 |
|
2945 | |||
2985 | If you have just made a commit, that commit will be the tip. If |
|
2946 | If you have just made a commit, that commit will be the tip. If you have | |
2986 |
|
|
2947 | just pulled changes from another repository, the tip of that repository | |
2987 |
|
|
2948 | becomes the current tip. The "tip" tag is special and cannot be renamed or | |
2988 |
a |
|
2949 | assigned to a different changeset. | |
2989 | """ |
|
2950 | """ | |
2990 | cmdutil.show_changeset(ui, repo, opts).show(repo[len(repo) - 1]) |
|
2951 | cmdutil.show_changeset(ui, repo, opts).show(repo[len(repo) - 1]) | |
2991 |
|
2952 | |||
2992 | def unbundle(ui, repo, fname1, *fnames, **opts): |
|
2953 | def unbundle(ui, repo, fname1, *fnames, **opts): | |
2993 | """apply one or more changegroup files |
|
2954 | """apply one or more changegroup files | |
2994 |
|
2955 | |||
2995 | Apply one or more compressed changegroup files generated by the |
|
2956 | Apply one or more compressed changegroup files generated by the bundle | |
2996 |
|
|
2957 | command. | |
2997 | """ |
|
2958 | """ | |
2998 | fnames = (fname1,) + fnames |
|
2959 | fnames = (fname1,) + fnames | |
2999 |
|
2960 | |||
@@ -3011,31 +2972,27 b' def unbundle(ui, repo, fname1, *fnames, ' | |||||
3011 | def update(ui, repo, node=None, rev=None, clean=False, date=None, check=False): |
|
2972 | def update(ui, repo, node=None, rev=None, clean=False, date=None, check=False): | |
3012 | """update working directory |
|
2973 | """update working directory | |
3013 |
|
2974 | |||
3014 | Update the repository's working directory to the specified |
|
2975 | Update the repository's working directory to the specified revision, or | |
3015 |
|
|
2976 | the tip of the current branch if none is specified. Use null as the | |
3016 |
|
|
2977 | revision to remove the working copy (like 'hg clone -U'). | |
3017 | clone -U'). |
|
2978 | ||
3018 |
|
2979 | When the working directory contains no uncommitted changes, it will be | ||
3019 | When the working directory contains no uncommitted changes, it |
|
2980 | replaced by the state of the requested revision from the repository. When | |
3020 | will be replaced by the state of the requested revision from the |
|
2981 | the requested revision is on a different branch, the working directory | |
3021 | repository. When the requested revision is on a different branch, |
|
2982 | will additionally be switched to that branch. | |
3022 | the working directory will additionally be switched to that |
|
2983 | ||
3023 | branch. |
|
2984 | When there are uncommitted changes, use option -C/--clean to discard them, | |
3024 |
|
2985 | forcibly replacing the state of the working directory with the requested | ||
3025 | When there are uncommitted changes, use option -C/--clean to |
|
2986 | revision. Alternately, use -c/--check to abort. | |
3026 | discard them, forcibly replacing the state of the working |
|
2987 | ||
3027 | directory with the requested revision. Alternately, use -c/--check |
|
2988 | When there are uncommitted changes and option -C/--clean is not used, and | |
3028 | to abort. |
|
2989 | the parent revision and requested revision are on the same branch, and one | |
3029 |
|
2990 | of them is an ancestor of the other, then the new working directory will | ||
3030 | When there are uncommitted changes and option -C/--clean is not |
|
2991 | contain the requested revision merged with the uncommitted changes. | |
3031 | used, and the parent revision and requested revision are on the |
|
2992 | Otherwise, the update will fail with a suggestion to use 'merge' or | |
3032 | same branch, and one of them is an ancestor of the other, then the |
|
2993 | 'update -C' instead. | |
3033 | new working directory will contain the requested revision merged |
|
2994 | ||
3034 | with the uncommitted changes. Otherwise, the update will fail with |
|
2995 | If you want to update just one file to an older revision, use revert. | |
3035 | a suggestion to use 'merge' or 'update -C' instead. |
|
|||
3036 |
|
||||
3037 | If you want to update just one file to an older revision, use |
|
|||
3038 | revert. |
|
|||
3039 |
|
2996 | |||
3040 | See 'hg help dates' for a list of formats valid for -d/--date. |
|
2997 | See 'hg help dates' for a list of formats valid for -d/--date. | |
3041 | """ |
|
2998 | """ | |
@@ -3066,10 +3023,10 b' def verify(ui, repo):' | |||||
3066 |
|
3023 | |||
3067 | Verify the integrity of the current repository. |
|
3024 | Verify the integrity of the current repository. | |
3068 |
|
3025 | |||
3069 | This will perform an extensive check of the repository's |
|
3026 | This will perform an extensive check of the repository's integrity, | |
3070 |
|
|
3027 | validating the hashes and checksums of each entry in the changelog, | |
3071 |
|
|
3028 | manifest, and tracked files, as well as the integrity of their crosslinks | |
3072 | integrity of their crosslinks and indices. |
|
3029 | and indices. | |
3073 | """ |
|
3030 | """ | |
3074 | return hg.verify(repo) |
|
3031 | return hg.verify(repo) | |
3075 |
|
3032 |
@@ -5,13 +5,13 b' hg cat [OPTION]... FILE...' | |||||
5 |
|
5 | |||
6 | output the current or given revision of files |
|
6 | output the current or given revision of files | |
7 |
|
7 | |||
8 | Print the specified files as they were at the given revision. If |
|
8 | Print the specified files as they were at the given revision. If no | |
9 |
|
|
9 | revision is given, the parent of the working directory is used, or tip if | |
10 |
|
|
10 | no revision is checked out. | |
11 |
|
11 | |||
12 | Output may be to a file, in which case the name of the file is |
|
12 | Output may be to a file, in which case the name of the file is given using | |
13 |
|
|
13 | a format string. The formatting rules are the same as for the export | |
14 |
|
|
14 | command, with the following additions: | |
15 |
|
15 | |||
16 | %s basename of file being printed |
|
16 | %s basename of file being printed | |
17 | %d dirname of file being printed, or '.' if in repository root |
|
17 | %d dirname of file being printed, or '.' if in repository root |
@@ -170,11 +170,10 b' hg add [OPTION]... [FILE]...' | |||||
170 |
|
170 | |||
171 | add the specified files on the next commit |
|
171 | add the specified files on the next commit | |
172 |
|
172 | |||
173 | Schedule files to be version controlled and added to the |
|
173 | Schedule files to be version controlled and added to the repository. | |
174 | repository. |
|
|||
175 |
|
174 | |||
176 | The files will be added to the repository at the next commit. To |
|
175 | The files will be added to the repository at the next commit. To undo an | |
177 |
|
|
176 | add before that, see hg forget. | |
178 |
|
177 | |||
179 | If no names are given, add all files to the repository. |
|
178 | If no names are given, add all files to the repository. | |
180 |
|
179 | |||
@@ -190,11 +189,10 b' hg add [OPTION]... [FILE]...' | |||||
190 |
|
189 | |||
191 | add the specified files on the next commit |
|
190 | add the specified files on the next commit | |
192 |
|
191 | |||
193 | Schedule files to be version controlled and added to the |
|
192 | Schedule files to be version controlled and added to the repository. | |
194 | repository. |
|
|||
195 |
|
193 | |||
196 | The files will be added to the repository at the next commit. To |
|
194 | The files will be added to the repository at the next commit. To undo an | |
197 |
|
|
195 | add before that, see hg forget. | |
198 |
|
196 | |||
199 | If no names are given, add all files to the repository. |
|
197 | If no names are given, add all files to the repository. | |
200 |
|
198 | |||
@@ -213,22 +211,21 b' diff repository (or selected files)' | |||||
213 |
|
211 | |||
214 | Differences between files are shown using the unified diff format. |
|
212 | Differences between files are shown using the unified diff format. | |
215 |
|
213 | |||
216 | NOTE: diff may generate unexpected results for merges, as it will |
|
214 | NOTE: diff may generate unexpected results for merges, as it will default | |
217 |
|
|
215 | to comparing against the working directory's first parent changeset if no | |
218 |
|
|
216 | revisions are specified. | |
219 |
|
217 | |||
220 | When two revision arguments are given, then changes are shown |
|
218 | When two revision arguments are given, then changes are shown between | |
221 |
|
|
219 | those revisions. If only one revision is specified then that revision is | |
222 |
|
|
220 | compared to the working directory, and, when no revisions are specified, | |
223 |
|
|
221 | the working directory files are compared to its parent. | |
224 | to its parent. |
|
|||
225 |
|
222 | |||
226 | Without the -a/--text option, diff will avoid generating diffs of |
|
223 | Without the -a/--text option, diff will avoid generating diffs of files it | |
227 |
|
|
224 | detects as binary. With -a, diff will generate a diff anyway, probably | |
228 |
|
|
225 | with undesirable results. | |
229 |
|
226 | |||
230 | Use the -g/--git option to generate diffs in the git extended diff |
|
227 | Use the -g/--git option to generate diffs in the git extended diff format. | |
231 |
|
|
228 | For more information, read 'hg help diffs'. | |
232 |
|
229 | |||
233 | options: |
|
230 | options: | |
234 |
|
231 | |||
@@ -252,24 +249,22 b' aliases: st' | |||||
252 |
|
249 | |||
253 | show changed files in the working directory |
|
250 | show changed files in the working directory | |
254 |
|
251 | |||
255 | Show status of files in the repository. If names are given, only |
|
252 | Show status of files in the repository. If names are given, only files | |
256 |
|
|
253 | that match are shown. Files that are clean or ignored or the source of a | |
257 |
|
|
254 | copy/move operation, are not listed unless -c/--clean, -i/--ignored, | |
258 | -c/--clean, -i/--ignored, -C/--copies or -A/--all are given. |
|
255 | -C/--copies or -A/--all are given. Unless options described with "show | |
259 | Unless options described with "show only ..." are given, the |
|
256 | only ..." are given, the options -mardu are used. | |
260 | options -mardu are used. |
|
|||
261 |
|
257 | |||
262 | Option -q/--quiet hides untracked (unknown and ignored) files |
|
258 | Option -q/--quiet hides untracked (unknown and ignored) files unless | |
263 |
|
|
259 | explicitly requested with -u/--unknown or -i/--ignored. | |
264 |
|
260 | |||
265 | NOTE: status may appear to disagree with diff if permissions have |
|
261 | NOTE: status may appear to disagree with diff if permissions have changed | |
266 |
|
|
262 | or a merge has occurred. The standard diff format does not report | |
267 |
|
|
263 | permission changes and diff only reports changes relative to one merge | |
268 |
|
|
264 | parent. | |
269 |
|
265 | |||
270 | If one revision is given, it is used as the base revision. |
|
266 | If one revision is given, it is used as the base revision. If two | |
271 |
|
|
267 | revisions are given, the differences between them are shown. | |
272 | shown. |
|
|||
273 |
|
268 | |||
274 | The codes used to show the status of files are: |
|
269 | The codes used to show the status of files are: | |
275 | M = modified |
|
270 | M = modified |
General Comments 0
You need to be logged in to leave comments.
Login now