##// END OF EJS Templates
doc fix: hg tags defaults to current parent revision, too....
Thomas Arendsen Hein -
r3915:3c82ab16 default
parent child Browse files
Show More
@@ -342,8 +342,8 b' def cat(ui, repo, file1, *pats, **opts):'
342 """output the current or given revision of files
342 """output the current or given revision of files
343
343
344 Print the specified files as they were at the given revision.
344 Print the specified files as they were at the given revision.
345 If no revision is given then working dir parent is used, or tip
345 If no revision is given, the parent of the working directory is used,
346 if no revision is checked out.
346 or tip if no revision is checked out.
347
347
348 Output may be to a file, in which case the name of the file is
348 Output may be to a file, in which case the name of the file is
349 given using a format string. The formatting rules are the same as
349 given using a format string. The formatting rules are the same as
@@ -1744,8 +1744,8 b' def manifest(ui, repo, rev=None):'
1744 """output the current or given revision of the project manifest
1744 """output the current or given revision of the project manifest
1745
1745
1746 Print a list of version controlled files for the given revision.
1746 Print a list of version controlled files for the given revision.
1747 If no revision is given then working dir parent is used, or tip
1747 If no revision is given, the parent of the working directory is used,
1748 if no revision is checked out.
1748 or tip if no revision is checked out.
1749
1749
1750 The manifest is the list of files being version controlled. If no revision
1750 The manifest is the list of files being version controlled. If no revision
1751 is given then the first parent of the working directory is used.
1751 is given then the first parent of the working directory is used.
@@ -2404,7 +2404,7 b' def status(ui, repo, *pats, **opts):'
2404 ui.write(' %s%s' % (copied, end))
2404 ui.write(' %s%s' % (copied, end))
2405
2405
2406 def tag(ui, repo, name, rev_=None, **opts):
2406 def tag(ui, repo, name, rev_=None, **opts):
2407 """add a tag for the current tip or a given revision
2407 """add a tag for the current or given revision
2408
2408
2409 Name a particular revision using <name>.
2409 Name a particular revision using <name>.
2410
2410
@@ -2412,7 +2412,8 b' def tag(ui, repo, name, rev_=None, **opt'
2412 very useful to compare different revision, to go back to significant
2412 very useful to compare different revision, to go back to significant
2413 earlier versions or to mark branch points as releases, etc.
2413 earlier versions or to mark branch points as releases, etc.
2414
2414
2415 If no revision is given, the parent of the working directory is used.
2415 If no revision is given, the parent of the working directory is used,
2416 or tip if no revision is checked out.
2416
2417
2417 To facilitate version control, distribution, and merging of tags,
2418 To facilitate version control, distribution, and merging of tags,
2418 they are stored as a file named ".hgtags" which is managed
2419 they are stored as a file named ".hgtags" which is managed
@@ -156,7 +156,7 b' list of commands (use "hg help -v" to sh'
156 serve export the repository via HTTP
156 serve export the repository via HTTP
157 showconfig show combined config settings from all hgrc files
157 showconfig show combined config settings from all hgrc files
158 status show changed files in the working directory
158 status show changed files in the working directory
159 tag add a tag for the current tip or a given revision
159 tag add a tag for the current or given revision
160 tags list repository tags
160 tags list repository tags
161 tip show the tip revision
161 tip show the tip revision
162 unbundle apply a changegroup file
162 unbundle apply a changegroup file
@@ -206,7 +206,7 b' list of commands (use "hg help -v" to sh'
206 serve export the repository via HTTP
206 serve export the repository via HTTP
207 showconfig show combined config settings from all hgrc files
207 showconfig show combined config settings from all hgrc files
208 status show changed files in the working directory
208 status show changed files in the working directory
209 tag add a tag for the current tip or a given revision
209 tag add a tag for the current or given revision
210 tags list repository tags
210 tags list repository tags
211 tip show the tip revision
211 tip show the tip revision
212 unbundle apply a changegroup file
212 unbundle apply a changegroup file
General Comments 0
You need to be logged in to leave comments. Login now