docker-offlineimap/get-wiki.sh
Nicolas Sebrecht f4579d9660 learn how to fork the wiki
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
2015-03-10 16:33:30 +01:00

17 lines
370 B
Bash
Executable File

#!/bin/zsh
if test -d wiki
then
echo "Directory 'wiki' already exists..."
exit 1
else
git clone https://github.com/OfflineIMAP/offlineimap.wiki.git wiki
cat <<EOF
Now, you can fork the wiki at https://github.com/OfflineIMAP/offlineimap-wiki
and add a reference to it:
$ cd wiki
$ git remote add myfork https://github.com/<username>/offlineimap-wiki.git
EOF
fi