Mercurial > public > mercurial-scm > hg-stable
diff hgext/mq.py @ 2526:37785f986260
mq: Added help for qcommit, consistently talk about queue repository.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Wed, 28 Jun 2006 08:56:01 +0200 |
parents | 2785aeb51be4 |
children | 7a90e0c77f43 |
line wrap: on
line diff
--- a/hgext/mq.py Tue Jun 27 08:31:03 2006 +0200 +++ b/hgext/mq.py Wed Jun 28 08:56:01 2006 +0200 @@ -1076,6 +1076,7 @@ return 0 def commit(ui, repo, *pats, **opts): + """commit changes in the queue repository""" q = repomap[repo] r = q.qrepo() if not r: raise util.Abort('no queue repository') @@ -1257,7 +1258,7 @@ 'hg qimport [-e] [-n NAME] [-f] FILE...'), "^qinit": (init, - [('c', 'create-repo', None, 'create patch repository')], + [('c', 'create-repo', None, 'create queue repository')], 'hg qinit [-c]'), "qnew": (new,