Mercurial > jhg
diff cmdline/org/tmatesoft/hg/console/Status.java @ 688:1499139a600a
Defect: copies are not reported with default settings (not even as added!). Parameter needCopies removed as there seems to be no reason to condition copies for hi-level api (HgStatus.isCopy() is way down the road)
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Sat, 27 Jul 2013 20:15:37 +0200 |
parents | 909306e412e2 |
children |
line wrap: on
line diff
--- a/cmdline/org/tmatesoft/hg/console/Status.java Sat Jul 27 18:34:14 2013 +0200 +++ b/cmdline/org/tmatesoft/hg/console/Status.java Sat Jul 27 20:15:37 2013 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2011 TMate Software Ltd + * Copyright (c) 2010-2013 TMate Software Ltd * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -44,7 +44,7 @@ public class Status { public static void main(String[] args) throws Exception { - final Set<String> flagOpts = asSet("-A", "-all", "-m", "--modified", "-a", "--added", "-r", "--removed", + final Set<String> flagOpts = asSet("-A", "--all", "-m", "--modified", "-a", "--added", "-r", "--removed", "--d", "--deleted", "-u", "--unknown", "-c", "--clean", "-i", "--ignored", "-n", "--no-status", "-C", "--copies"); Options cmdLineOpts = Options.parse(args, flagOpts);