Question

I have problems using Gollum wiki with github remote wiki pages.

I created a wiki for this project, and Create Wiki pages in wiki git repo.

Clone the repo using ssh:

$ git clone git@github.com:ricardogarfe/python-sample-test.wiki.git

Install Gollum:

$ sudo gem install gollum

Run gollum inside wiki repository:

$ cd python-sample-test.wiki.git
$ gollum

Edit home page and save with comments.

Then I ran:

$ git status
# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
# nothing to commit (working directory clean)

So I can't do push to origin when I edit wiki pages using gollum. I forget any configuration ? user, groups in linux to make commits, push automaticaly through gollum ?

Using:

  • ruby 1.8.7
  • gem 1.8.15

Thanks! Ricardo.

Was it helpful?

Solution

I haven't worked with gollum so this may be a bit off base, but your output indicates that there is a commit which hasn't been pushed yet:

# Your branch is ahead of 'origin/master' by 1 commit.

If you look at the output of git log -p -1 does it appear to contain the changes you made? If so, just git push and you should be set.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top