Projects

於 2022年3月27日 (日) 18:15 由 Tankianting討論 | 貢獻 所做的修訂 →‎在遠端新增repo

Since I've decited to decrease the usage of Github which is both commercial and controlled by Microsoft, the git repos has been moved to here.

List of my projects
Side Project's name Description Gitweb viewer & History Get the source code
(HOW TO CLONE IT)
Wiki Issue-tracking forum Orig. page
Ataabu toy-language proposal Gitweb viewer git clone https://kianting.info/git/Ataabu Ataabu Forum (None)
Clochur A Scheme-like typesetting LISP editor that using SILE typesetting Engine. Gitweb viewer git clone https://kianting.info/git/Clochur Clochur Orig. page
Uiahoe converting POJ (Pe̍h-ōe-jī, a Romanization of Min Nan (aka. Hokkien) Chinese) with tone numbers to the formal form Gitweb viewer git clone https://kianting.info/git/uiahoe Uiahoe Orig. page
findarray30code Code-searcher for Array30, a chinese input method. under X11 license (instead of the tables that is under Array Input Method Public License) Gitweb viewer git clone https://kianting.info/git/findarray30code findarray30code Orig. page
Sligeach-font A reprint font of a 19th Gaelic type font. Gitweb viewer git clone https://kianting.info/git/Sligeach-font Sligeach-font Orig. page

Personal notes (in Mandarin Chinese)

在遠端新增repo

You have to set the ssh key between server and client first.

cd /var/www/git;
mkdir repo;
cd repo;
git init --bare;

然後在本機端新增:

git commit -m "example";
git remote add origin user@example.info:/var/www/git;
git push origin master;


記得要開啓 .git/hooks,然後:cp post-update.sample post-update; chmod u+x post-update;

其他