##// END OF EJS Templates
Fix help output, and a few broken tests.
Bryan O'Sullivan -
r1034:8dbbea5b default
parent child Browse files
Show More
@@ -896,6 +896,8 b' def log(ui, repo, *pats, **opts):'
896 896 def bump(self, rev):
897 897 self.rev = rev
898 898 self.hunk[rev] = []
899 def note(self, *args):
900 if self.verbose: self.write(*args)
899 901 def status(self, *args):
900 902 if not self.quiet: self.write(*args)
901 903 def write(self, *args):
@@ -9,7 +9,7 b' basic commands (use "hg help" for the fu'
9 9 diff diff working directory (or selected files)
10 10 export dump the header and diffs for one or more changesets
11 11 init create a new repository in the given directory
12 log show the revision history of the repository or a single file
12 log show revision history of entire repository or files
13 13 pull pull changes from the specified source
14 14 push push changes to the specified destination
15 15 remove remove the specified files on the next commit
@@ -24,7 +24,7 b' basic commands (use "hg help" for the fu'
24 24 diff diff working directory (or selected files)
25 25 export dump the header and diffs for one or more changesets
26 26 init create a new repository in the given directory
27 log show the revision history of the repository or a single file
27 log show revision history of entire repository or files
28 28 pull pull changes from the specified source
29 29 push push changes to the specified destination
30 30 remove remove the specified files on the next commit
@@ -53,7 +53,7 b' list of commands (use "hg help -v" to sh'
53 53 incoming show new changesets found in source
54 54 init create a new repository in the given directory
55 55 locate locate files matching specific patterns
56 log show the revision history of the repository or a single file
56 log show revision history of entire repository or files
57 57 manifest output the latest or given revision of the project manifest
58 58 outgoing show changesets not found in destination
59 59 parents show the parents of the working dir or revision
@@ -91,7 +91,7 b' list of commands (use "hg help -v" to sh'
91 91 incoming show new changesets found in source
92 92 init create a new repository in the given directory
93 93 locate locate files matching specific patterns
94 log show the revision history of the repository or a single file
94 log show revision history of entire repository or files
95 95 manifest output the latest or given revision of the project manifest
96 96 outgoing show changesets not found in destination
97 97 parents show the parents of the working dir or revision
@@ -186,7 +186,7 b' basic commands (use "hg help" for the fu'
186 186 diff diff working directory (or selected files)
187 187 export dump the header and diffs for one or more changesets
188 188 init create a new repository in the given directory
189 log show the revision history of the repository or a single file
189 log show revision history of entire repository or files
190 190 pull pull changes from the specified source
191 191 push push changes to the specified destination
192 192 remove remove the specified files on the next commit
@@ -206,7 +206,7 b' basic commands (use "hg help" for the fu'
206 206 diff diff working directory (or selected files)
207 207 export dump the header and diffs for one or more changesets
208 208 init create a new repository in the given directory
209 log show the revision history of the repository or a single file
209 log show revision history of entire repository or files
210 210 pull pull changes from the specified source
211 211 push push changes to the specified destination
212 212 remove remove the specified files on the next commit
General Comments 0
You need to be logged in to leave comments. Login now