Skip to content
Snippets Groups Projects
Commit ed21682a authored by sveseli's avatar sveseli
Browse files

add new utility for creating svn tag

parent 19efeba1
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
SVN_ROOT=https://subversion.xray.aps.anl.gov/DataManagement
version=$1
if [ -z $version ]; then
echo "Usage: $0 <version>"
exit 1
fi
svn copy $SVN_ROOT/trunk $SVN_ROOT/tags/$version -m "Creating tag $version"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment