-if ssh $MY_GIT_SERVER "test -d $MY_ACCOUNT_GIT_REPO"; then
- echo I: checking out local git repository...
- dir="$(mktemp -d home.XXXXXXXX)"
- trap "rm -rf $dir" 0
- git clone --no-checkout $MY_ACCOUNT_REPO_URL "$dir"/co
- mv "$dir"/co/.git .
- git checkout-index --quiet --index --all
- git reset HEAD
- echo
-else
- echo I: creating remote git repository for this account...
- ssh $MY_GIT_SERVER "GIT_DIR=${MY_ACCOUNT_GIT_REPO} git --bare init"
- echo I: setting up local git repository...
- git init
- git remote add origin $MY_ACCOUNT_REPO_URL
- git config branch.master.remote origin
- git config branch.master.merge refs/heads/master
- git add .mrconfig
- git commit -m'initial checkin'
- git push --all
- echo
-fi
-
-rm -f "$0"
+#if ssh $MY_GIT_SERVER "test -d $MY_ACCOUNT_GIT_REPO" </dev/null; then
+# echo I: checking out local git repository...
+# dir="$(mktemp -d home.XXXXXXXX)"
+# trap "rm -rf $dir" 0
+# git clone --no-checkout $MY_ACCOUNT_REPO_URL "$dir"/co
+# mv "$dir"/co/.git .
+# git checkout-index --quiet --index --all
+# git reset HEAD
+# rm -r $dir
+# trap - 0
+# echo
+#else
+# echo I: creating remote git repository for this account...
+# ssh $MY_GIT_SERVER "
+# GIT_DIR=${MY_ACCOUNT_GIT_REPO} git --bare init
+# echo 'account setup for $MY_ACCOUNT'
+# " </dev/null
+# echo I: setting up local git repository...
+# git init
+# git remote add origin $MY_ACCOUNT_REPO_URL
+# git config branch.master.remote origin
+# git config branch.master.merge refs/heads/master
+# git add .mrconfig
+# git commit -m'initial checkin'
+# git push --all
+# echo
+#fi