1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
# Copyright (C) 2004 Aaron Bentley
#
# See the file "COPYING" for further information about
# the copyright and warranty status of this work.
. "$abadir/aba-lib"
cmd_exec()
{
aba_tag_this $1
tla sync-tree $1--base-0
tla set-tree-version $1
}
cmd_desc()
{
echo ' branch-this : branches the current tree to a new tag'
}
cmd_help()
{
echo "This creates a new tag from the current tree, then sets the current tree to"
echo "that tag. No options are available."
}
cmd_ext_help()
{
echo -n
}
aba_run "$@"
# arch-tag: branch-this by Aaron Bentley (11:40 Jan 28, 2004)
|