git init && git add . &&
git commit --message "Initial commit - created the project" &&
+git config htdocs.path "$HOME"/Internet/WWW/htdocs/phdru.name/Software/Python/"$project_name"/docs &&
cp -p "$HOME"/current/projects/m_lib/update-remotes . &&
echo /update-remotes >>.git/info/exclude &&
exec ./mk-git-aliases
#! /bin/sh
-web="$HOME"/Internet/WWW/htdocs/phdru.name/Software/Python/{project}/docs
+web="`git config --get --path htdocs.path`" &&
cd "`dirname \"$0\"`"/docs/_build/html &&
-rsync -ahP --del * --exclude=objects.inv "$web" &&
+rsync -ahP --del * --exclude=/objects.inv "$web" &&
exec chmod -R u=rwX,go=rX "$web"