blob: f7d2e95a190e01aa65ae90f570bc95ee825385f5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
rsync -avzP --rsh=ssh ./src/ root@www.aberrantflux.xyz:/var/www/aberrantflux-site
if [ $# -eq 0 ]; then
exit 0
fi
git add .
git commit -m "$1"
git push origin
git push mirror
|