1. Relative URL for Git submodule

    I think that I should have use relative URL for Git submodule. Here, I explain why, and how I do.

    Background

    In Gnuk git repository, it uses Chopstx as submodule. In NeuG git repository, it uses Chopstx and Fraucheky as submodule.

    Git repositories of Gnuk and NeuG are available at …

    more »
  2. Gitweb supports Japanese?

    When I browse a ReST document in Japanese, I got following error on console.

    [Thu Apr 21 11:09:15 2011] gitweb.cgi: Wide character in FCGI::Stream::PRINT at /usr/lib/perl5/FCGI.pm line 95, <$fd> line 6.
    

    And generated HTML page is wrong.

    more »
  3. Initial settings of Git

    Git setup

    Git needs initial setup. I type:

    $ git config --global user.name "NIIBE Yutaka"
    $ git config --global user.email "gniibe@fsij.org"
    
    more »
  4. Maintain web site using Git

    I had a problem for www.gniibe.org. I started this site in 2002.

    When needed, I just put some files onto the htmldocs. That was THE publishing process. This is simple process, but this is bad process. Because of this process, the site became unmaintained.

    Put everything into repository …

    more »