2 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License version 2 as
6 published by the Free Software Foundation.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 from pydoc import pager
20 from stgit.argparse import opt
21 from stgit.commands.common import *
22 from stgit.utils import *
23 from stgit.out import *
24 from stgit import stack, git
26 help = 'Show the applied patches modifying a file'
27 usage = ['[options] [<files or dirs>]']
29 Show the applied patches modifying the given files. Without arguments,
30 it shows the patches affected by the local tree modifications. The
31 '--diff' option also lists the patch log and the diff for the given
35 opt('-d', '--diff', action = 'store_true',
36 short = 'Show the diff for the given files'),
38 short = 'Use BRANCH instead of the default branch')]
40 directory = DirectoryHasRepository()
43 '-------------------------------------------------------------------------------\n' \
45 '-------------------------------------------------------------------------------\n' \
50 def func(parser, options, args):
51 """Show the patches modifying a file
54 files = [path for (stat,path) in git.tree_status(verbose = True)]
55 # git.tree_status returns absolute paths
57 files = git.ls_files(args)
58 directory.cd_to_topdir()
61 raise CmdException, 'No files specified or no local changes'
63 applied = crt_series.get_applied()
65 raise CmdException, 'No patches applied'
67 revs = git.modifying_revs(files, crt_series.get_base(),
68 crt_series.get_head())
71 # build the patch/revision mapping
74 patch = crt_series.get_patch(name)
75 rev_patch[patch.get_top()] = patch
77 # print the patch names
81 patch = rev_patch[rev]
83 diff_output += diff_tmpl \
84 % (patch.get_name(), patch.get_description(),
85 git.diff(files, patch.get_bottom(),
88 out.stdout(patch.get_name())