~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/diff-rev

  • Committer: Robert Collins
  • Date: 2005-09-14 11:27:20 UTC
  • mto: (147.2.6) (364.1.3 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: robertc@robertcollins.net-20050914112720-c66a21de86eafa6e
trim fai cribbage

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
# Copyright (C) 2004 Aaron Bentley
3
 
#
4
 
# See the file "COPYING" for further information about
5
 
# the copyright and warranty status of this work.
6
 
 
7
 
. "$abadir/aba-lib"
8
 
cmd_exec()
9
 
{
10
 
   tla delta --report -n "$@"
11
 
}
12
 
cmd_desc()
13
 
{
14
 
  echo '                    diff-rev : alias for delta --report -n'
15
 
}
16
 
cmd_help()
17
 
{
18
 
  echo "Displays the difference between two revisions.  Alias for alias for "delta --report -n"."
19
 
}
20
 
cmd_ext_help()
21
 
{
22
 
   echo -n
23
 
}
24
 
aba_run "$@"
25
 
# arch-tag: diff-rev by Aaron Bentley (23:19 Jan 28, 2004)