parent
1e4c2e7369
commit
3c5d1b0ff2
@ -1,9 +1,13 @@
|
|||||||
if [ a"$1" = adiff -o a"$1" = aexport ]; then
|
#!/bin/bash
|
||||||
cmd="$1"
|
|
||||||
shift
|
case "$1" in
|
||||||
else
|
#cvs --help-commands 2>&1 | sed "s/[ ][ ]*/ /g" | cut -d " " -f 2
|
||||||
cmd=update
|
add|admin|annotate|checkout|commit|diff|edit|editors|export|history|import|\
|
||||||
fi
|
init|log|login|logout|pserver|rdiff|release|remove|rtag|server|status|\
|
||||||
|
tag|unedit|update|watch|watchers)
|
||||||
|
cmd="$1"; shift;;
|
||||||
|
*) cmd=update;;
|
||||||
|
esac
|
||||||
|
|
||||||
cvs -z3 -d :pserver:anonymous@cvs.libvncserver.sf.net:/cvsroot/libvncserver $cmd "$@"
|
cvs -z3 -d :pserver:anonymous@cvs.libvncserver.sf.net:/cvsroot/libvncserver $cmd "$@"
|
||||||
|
|
||||||
|
Loading…
Reference in new issue