X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/d312709c416944cab8e8e3ad09d47b69f9049931..5c076a66d34010d30eb956598769723c0d371d53:/doc/setup/discussion.mdwn diff --git a/doc/setup/discussion.mdwn b/doc/setup/discussion.mdwn index 97c4cb93b..e3273519f 100644 --- a/doc/setup/discussion.mdwn +++ b/doc/setup/discussion.mdwn @@ -1,3 +1,7 @@ +I just went through the standard procedure described for setup, copied the blog directory from examples into my source directory, ran ikiwiki, and everything seems to have worked, except that none of the +[[!meta ... ]] tags get converted. They simply show up in the html files unformatted, with no exclamation point, and with p tags around them. Any ideas? using ikiwiki version 2.40 on freebsd --mjg + + Can the instructions for using `ikiwiki-makerepo` be clarified. This command wants to create folders in the directory it is run in. Which directory should that be - `$SRCDIR?` --Andy @@ -41,6 +45,8 @@ see some mentions of changes in git's changelog for 1.5.3 that look relevant. I've changed ikiwiki-makerepo to use a method more portable to older versions of git. --[[Joey]] +Many thanks Joey, upgraded my git, and now have working iki :) -- Andy + ---- It isn't intended that .ikiwiki be versioned, is it? Do you have a svn:ignore set? @@ -77,3 +83,29 @@ directory back into the wiki's working copy directory, isn't it? --[[tschwinge]] Curious as to why support for CVS is not built in. --[[Luther]] > See [[todo/CVS_backend|todo/CVS_backend]], but you might consider switching to a better version control system. --[[JoshTriplett]] + +---- + +What is the syntax for specifying the adminuser as an openid user? I've tried a couple things but I'm missing something. Thanks for any pointers. -- [[AdamShand]] + +> Just put the openid url in there. It has to be the full url with +> "http://". --[[Joey]] + +---- + +I apologize if this is the incorrect forum for this question, but I am trying to get ikiwiki set up and running with git. I followed all the directions and all seems to work until I go back and try to make changes. The steps I am performing: + + cd $SRCDIR (e.g. ~/ikisrc) + vim index.mdwn (add a couple lines) + git commit -a -m 'test' + git push + +I then get a long error message which reads in part "You asked me to pull without telling me which branch you +want to merge with, and 'branch.master.merge' in your configuration file does not tell me either." From that point on, I get: + + sws@odin:~/dev/ikisrc$ git push + To /home/git/repos/myikiwiki.git + ! [rejected] master -> master (non-fast forward) + error: failed to push to '/home/git/repos/myikiwiki.git' + +If I do a git clone ssh://odin/path/to/$REPOSITORY from another machine and try to edit I get the same error sequence. What am I doing wrong?