2
# Copyright (C) 2004 Aaron Bentley
4
# See the file "COPYING" for further information about
5
# the copyright and warranty status of this work.
11
if [ -d ~/.aba/changeset ]; then
12
yes|rm -R ~/.aba/changeset
14
revision=`aba_full_revision $1`
15
if [ -z "$revision" ]; then
16
echo Unable to determine a full revision spec from $1
19
if tla get-changeset $revision ~/.aba/changeset; then
20
tla show-changeset --diffs ~/.aba/changeset
22
if [ -d ~/.aba/changeset ]; then
23
yes|rm -R ~/.aba/changeset
28
echo ' show-rev : shows the changes that appeared in a revision'
32
echo 'Displays the changes in a given revision.'
36
echo 'Works a lot like get-changeset.'
39
# arch-tag: show-rev by Aaron Bentley (12:20 Jan 15, 2004)