3 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License version 2 as
7 published by the Free Software Foundation.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 from stgit.argparse import opt
21 from stgit.commands.common import *
22 from stgit.utils import *
23 from stgit import stack, git
25 help = 'Show the tree status'
27 usage = ['[options] [<files or dirs>]']
29 Show the status of the whole working copy or the given files. The
30 command also shows the files in the current directory which are not
31 under revision control. The files are prefixed as follows:
34 N - newly added to the repository
35 D - deleted from the repository
39 An 'stg refresh' command clears the status of the modified, new and
43 opt('-m', '--modified', action = 'store_true',
44 short = 'Show modified files only'),
45 opt('-n', '--new', action = 'store_true',
46 short = 'Show new files only'),
47 opt('-d', '--deleted', action = 'store_true',
48 short = 'Show deleted files only'),
49 opt('-c', '--conflict', action = 'store_true',
50 short = 'Show conflict files only'),
51 opt('-u', '--unknown', action = 'store_true',
52 short = 'Show unknown files only'),
53 opt('-x', '--noexclude', action = 'store_true',
54 short = 'Do not exclude any files from listing'),
55 opt('--reset', action = 'store_true',
56 short = 'Reset the current tree changes')]
58 directory = DirectoryHasRepository(needs_current_series = False, log = False)
60 def status(files, modified, new, deleted, conflict, unknown, noexclude):
61 """Show the tree status
63 cache_files = git.tree_status(files,
64 unknown = (not files),
65 noexclude = noexclude)
66 filtered = (modified or new or deleted or conflict or unknown)
81 cache_files = [x for x in cache_files if x[0] in filestat]
84 for st, fn in cache_files:
88 output.append('%s %s' % (st, fn))
89 for o in sorted(output):
92 def func(parser, options, args):
93 """Show the tree status
95 args = git.ls_files(args)
96 directory.cd_to_topdir()
101 conflicts = git.get_conflicts()
102 git.resolved([fn for fn in args if fn in conflicts])
108 status(args, options.modified, options.new, options.deleted,
109 options.conflict, options.unknown, options.noexclude)