From: joey Date: Wed, 3 Oct 2007 18:45:12 +0000 (+0000) Subject: web commit by http://madduck.myopenid.com/: alternate git setup suggestion. X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/6a226b26c1b697ef0ba7353d6980a2acda1acb1f web commit by http://madduck.myopenid.com/: alternate git setup suggestion. --- diff --git a/doc/setup/discussion.mdwn b/doc/setup/discussion.mdwn index 16e88601e..101ca74df 100644 --- a/doc/setup/discussion.mdwn +++ b/doc/setup/discussion.mdwn @@ -47,7 +47,24 @@ simpler? --[[Joey]] cd $SRCDIR echo /.ikiwiki > .gitignore mv $SRCDIR.old/* $SRCDIR.old/.* . - rmdir $SRDDIR.old + rmdir $SRCDIR.old git add . git commit -m "initial commit" - git push + git push $REPOSITORY master + +[[madduck]]: I'd say this instead: + + mkdir $REPOSITORY + cd $REPOSITORY + git --bare init --shared + mv $SRCDIR $SRCDIR.old + cd $SRCDIR + git init + echo /.ikiwiki > .gitignore + mv $SRCDIR.old/* $SRCDIR.old/.* . + rmdir $SRCDIR.old + git add . + git commit -m "initial commit" + git remote add origin $REPOSITORY + git config branch.master.merge refs/heads/master + git push --all \ No newline at end of file