Remove the basedir exception throwing
[stgit] / stgit / commands / diff.py
CommitLineData
fcee87cf
CM
1
2__copyright__ = """
3Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
4
5This program is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License version 2 as
7published by the Free Software Foundation.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program; if not, write to the Free Software
16Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17"""
18
19import sys, os
20from optparse import OptionParser, make_option
21
22from stgit.commands.common import *
23from stgit.utils import *
24from stgit import stack, git
25
26
27help = 'show the tree diff'
28usage = """%prog [options] [<files...>]
29
26aab5b0
CM
30Show the diff (default) or diffstat between the current working copy
31or a tree-ish object and another tree-ish object. File names can also
32be given to restrict the diff output. The tree-ish object can be a
33standard git commit, tag or tree. In addition to these, the command
34also supports 'base', representing the bottom of the current stack,
35and '[patch]/[bottom | top]' for the patch boundaries (defaulting to
36the current one):
37
38rev = '([patch]/[bottom | top]) | <tree-ish> | base'
39
40If neither bottom or top are given but a '/' is present, the command
41shows the specified patch (defaulting to the current one)."""
fcee87cf
CM
42
43options = [make_option('-r', metavar = 'rev1[:[rev2]]', dest = 'revs',
44 help = 'show the diff between revisions'),
45 make_option('-s', '--stat',
46 help = 'show the stat instead of the diff',
47 action = 'store_true')]
48
49
50def func(parser, options, args):
51 """Show the tree diff
52 """
53 if options.revs:
54 rev_list = options.revs.split(':')
55 rev_list_len = len(rev_list)
56 if rev_list_len == 1:
57 if rev_list[0][-1] == '/':
58 # the whole patch
59 rev1 = rev_list[0] + 'bottom'
60 rev2 = rev_list[0] + 'top'
61 else:
62 rev1 = rev_list[0]
63 rev2 = None
64 elif rev_list_len == 2:
65 rev1 = rev_list[0]
66 rev2 = rev_list[1]
fcee87cf
CM
67 else:
68 parser.error('incorrect parameters to -r')
69 else:
70 rev1 = 'HEAD'
71 rev2 = None
72
73 if options.stat:
74 print git.diffstat(args, git_id(rev1), git_id(rev2))
75 else:
b4bddc06 76 git.diff(args, git_id(rev1), git_id(rev2), sys.stdout)