learn how to fork the wiki
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
parent
0b43418911
commit
f4579d9660
3
.gitignore
vendored
3
.gitignore
vendored
@ -3,8 +3,9 @@
|
||||
.*.swo
|
||||
*.html
|
||||
*~
|
||||
# website.
|
||||
# websites.
|
||||
/website/
|
||||
/wiki/
|
||||
# Generated files.
|
||||
/docs/dev-doc/
|
||||
/build/
|
||||
|
16
get-wiki.sh
Executable file
16
get-wiki.sh
Executable file
@ -0,0 +1,16 @@
|
||||
#!/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
|
Loading…
Reference in New Issue
Block a user