Gollum 安装笔记

环境Ubuntu server 14.04


sudo apt-get install ruby1.9.1 ruby1.9.1-dev make zlib1g-dev libicu-dev build-essential git  
sudo gem install gollum

mkdir /home/hadoop/gitdir  
cd /home/hadoop/gitdir  
git init  
gollum --css --allow-uploads --mathjax --h1-title  

gollum:轻量级的wiki系统
Ubuntu Git使用
git还原被删除的文件

git config --global user.name "tom"
git config --global user.email "[email protected]"

/var/lib/gems/1.9.1/gems/gitlab-grit-2.7.3/lib/grit/index.rb

汉字utf-8 报错的问题
让gollum支持图片上传

安装inotifywait
inotifywait介绍

图片上传自动commit脚本:

UPLOAD_PATH=/home/hadoop/git_test/uploads/   
while /usr/local/bin/inotifywait  -q -r -e ATTRIB,CLOSE_WRITE,CREATE,DELETE   $UPLOAD_PAHT;do  
    cd $UPLOAD_PATH  
    git add -A  
    git commit -a -m 'commit to Git repository automatically'  
done  

gollum的一些注意点
gollum命令必须在git目录下使用
使用git来提交内容时一定要commit之后才会生效
git必须在master分支提交(git checkout master)
wiki的目录结构最好事先设计好,否则文件会非常乱

git还原到某一个版本:8c487e0为需要恢复到的文件版本号
git checkout 8c487e0 /home/hadoop/git_test/
git checkout master
git add .
git commit -m 'test delete recover'

你可能感兴趣的:(Gollum 安装笔记)