aboutsummaryrefslogtreecommitdiff
path: root/contrib/submit
blob: 552b253d24131677892328691becefdde9d7cdcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
echo "Are you sure you want to commit changes to these files?"
svn status
read dummy
svn diff
echo "Are you sure you want to commit the changes above (CTRL-C to abort)"
read dummy
if test 0 != $#
then
  svn commit -m "$*"
else
  svn commit 
fi