##// 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 def bump(self, rev):
896 def bump(self, rev):
897 self.rev = rev
897 self.rev = rev
898 self.hunk[rev] = []
898 self.hunk[rev] = []
899 def note(self, *args):
900 if self.verbose: self.write(*args)
899 def status(self, *args):
901 def status(self, *args):
900 if not self.quiet: self.write(*args)
902 if not self.quiet: self.write(*args)
901 def write(self, *args):
903 def write(self, *args):
@@ -9,7 +9,7 b' basic commands (use "hg help" for the fu'
9 diff diff working directory (or selected files)
9 diff diff working directory (or selected files)
10 export dump the header and diffs for one or more changesets
10 export dump the header and diffs for one or more changesets
11 init create a new repository in the given directory
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 pull pull changes from the specified source
13 pull pull changes from the specified source
14 push push changes to the specified destination
14 push push changes to the specified destination
15 remove remove the specified files on the next commit
15 remove remove the specified files on the next commit
@@ -24,7 +24,7 b' basic commands (use "hg help" for the fu'
24 diff diff working directory (or selected files)
24 diff diff working directory (or selected files)
25 export dump the header and diffs for one or more changesets
25 export dump the header and diffs for one or more changesets
26 init create a new repository in the given directory
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 pull pull changes from the specified source
28 pull pull changes from the specified source
29 push push changes to the specified destination
29 push push changes to the specified destination
30 remove remove the specified files on the next commit
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 incoming show new changesets found in source
53 incoming show new changesets found in source
54 init create a new repository in the given directory
54 init create a new repository in the given directory
55 locate locate files matching specific patterns
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 manifest output the latest or given revision of the project manifest
57 manifest output the latest or given revision of the project manifest
58 outgoing show changesets not found in destination
58 outgoing show changesets not found in destination
59 parents show the parents of the working dir or revision
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 incoming show new changesets found in source
91 incoming show new changesets found in source
92 init create a new repository in the given directory
92 init create a new repository in the given directory
93 locate locate files matching specific patterns
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 manifest output the latest or given revision of the project manifest
95 manifest output the latest or given revision of the project manifest
96 outgoing show changesets not found in destination
96 outgoing show changesets not found in destination
97 parents show the parents of the working dir or revision
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 diff diff working directory (or selected files)
186 diff diff working directory (or selected files)
187 export dump the header and diffs for one or more changesets
187 export dump the header and diffs for one or more changesets
188 init create a new repository in the given directory
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 pull pull changes from the specified source
190 pull pull changes from the specified source
191 push push changes to the specified destination
191 push push changes to the specified destination
192 remove remove the specified files on the next commit
192 remove remove the specified files on the next commit
@@ -206,7 +206,7 b' basic commands (use "hg help" for the fu'
206 diff diff working directory (or selected files)
206 diff diff working directory (or selected files)
207 export dump the header and diffs for one or more changesets
207 export dump the header and diffs for one or more changesets
208 init create a new repository in the given directory
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 pull pull changes from the specified source
210 pull pull changes from the specified source
211 push push changes to the specified destination
211 push push changes to the specified destination
212 remove remove the specified files on the next commit
212 remove remove the specified files on the next commit
General Comments 0
You need to be logged in to leave comments. Login now