mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 14:28:40 +02:00
9 lines
236 B
Bash
Executable File
9 lines
236 B
Bash
Executable File
#!/bin/sh
|
|
cd /home/dfs/Software/Remind.git || exit 1
|
|
|
|
rm -f .git/COMMIT_EDITMSG .git/*~
|
|
|
|
git update-server-info && cd .git && rsync --archive --verbose --progress --delete ./ dianne.skoll.ca:web/projects/remind/git/Remind.git/
|
|
exit $?
|
|
|