added handy upload script which uses rsync to copy all modified files
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1757 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
b39d4bb27f
commit
7634646bc1
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -173,3 +173,4 @@ freeglut/web-src/news.php svn_keywords=Author+Date+Id+Revision
|
||||
freeglut/web-src/progress.php svn_keywords=Author+Date+Id+Revision
|
||||
freeglut/web-src/template.php svn_keywords=Author+Date+Id+Revision
|
||||
freeglut/web-src/uinfo.php svn_keywords=Author+Date+Id+Revision
|
||||
freeglut/web-src/upload -text
|
||||
|
21
freeglut/web-src/upload
Executable file
21
freeglut/web-src/upload
Executable file
@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ -n "$1" ]; then
|
||||
user=$1
|
||||
else
|
||||
# read the username out of .sfuser
|
||||
if [ -f .sfuser ]; then
|
||||
user=$(cat .sfuser)
|
||||
else
|
||||
user=$USER
|
||||
fi
|
||||
|
||||
if [ -z "$user" ]; then
|
||||
echo "please pass your sourceforge username as argument, or create a .sfuser file" >&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
echo "connecting as user: $user ..."
|
||||
rsync -vr --exclude='.sfuser' --exclude '*.swp' \
|
||||
--rsh="ssh -l $user" * $user,freeglut@web.sourceforge.net:htdocs/
|
Reference in New Issue
Block a user