Commit c043f972 authored by Vitaly Lipatov's avatar Vitaly Lipatov

add update script

parent 23797d26
#!/bin/sh -x
fatal()
{
echo "$@" >&2
exit 1
}
MV="$1"
[ -n "$MV" ] || fatal
ELIST="etersoft-common etersoft-share-flags etersoft-wine"
cd ../../cifs-2.6 || fatal
for i in $ELIST ; do
git checkout $i || fatal
git merge $MV || fatal
done
# create branch from tag
git checkout -b $MV-etercifs $MV || fatal
for i in $ELIST ; do
git merge $i || fatal
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment