我在使用github远程维基页面时使用Gollum wiki时遇到问题。
我为此project创建了一个wiki,并在wiki git repo中创建了Wiki页面。
使用ssh克隆回购:
$ git clone git@github.com:ricardogarfe/python-sample-test.wiki.git
安装Gollum:
$ sudo gem install gollum
在wiki存储库中运行gollum:
$ cd python-sample-test.wiki.git
$ gollum
修改主页并保存评论。
然后我跑了:
$ git status
# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
# nothing to commit (working directory clean)
所以当我使用gollum编辑维基页面时,我无法推送到原点。 我忘了任何配置?用户,linux中的组进行提交,通过gollum自动推送?
使用:
谢谢! 里卡多。
答案 0 :(得分:2)
我没有使用gollum所以这可能有点偏离基础,但是你的输出表明还有一个尚未被推送的提交:
# Your branch is ahead of 'origin/master' by 1 commit.
如果查看git log -p -1
的输出,它是否包含您所做的更改?如果是这样,只需设置git push
即可。