From 5713eb4bfd465beef627f0c89b996d090f593603 Mon Sep 17 00:00:00 2001 From: Hsieh Chin Fan Date: Tue, 17 Dec 2024 14:05:18 +0800 Subject: git: update --- git/Makefile | 7 +++++++ git/README.md | 3 +++ git/archive/stagit.sh | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++ git/assets/logo.svg | 8 ++++++++ git/create.sh | 53 -------------------------------------------------- git/git-daemon.service | 2 +- git/logo.svg | 8 -------- 7 files changed, 72 insertions(+), 62 deletions(-) create mode 100644 git/Makefile create mode 100755 git/archive/stagit.sh create mode 100644 git/assets/logo.svg delete mode 100755 git/create.sh delete mode 100644 git/logo.svg diff --git a/git/Makefile b/git/Makefile new file mode 100644 index 0000000..3b2dbb8 --- /dev/null +++ b/git/Makefile @@ -0,0 +1,7 @@ +.ONESHELL: + +cgit: + ln -sf `pwd`/cgitrc /etc/cgitrc +daemon: + sudo systemctl enable git-daemon.service + sudo systemctl start git-daemon.service diff --git a/git/README.md b/git/README.md index 5637f06..f742292 100644 --- a/git/README.md +++ b/git/README.md @@ -2,6 +2,9 @@ read https://git-scm.com/book/be/v2/Git-on-the-Server-Git-Daemon +## For cgit +https://wiki.archlinux.org/title/Cgit + ## For Http Files for Git refs: diff --git a/git/archive/stagit.sh b/git/archive/stagit.sh new file mode 100755 index 0000000..f2f4227 --- /dev/null +++ b/git/archive/stagit.sh @@ -0,0 +1,53 @@ +#!/bin/bash +# - Makes index for repositories in a single directory. +# - Makes static pages for each repository directory. +# +# NOTE, things to do manually (once) before running this script: +# - copy style.css, logo.png and favicon.png manually, a style.css example +# is included. +# +# - write clone URL, for example "git://git.codemadness.org/dir" to the "url" +# file for each repo. +# - write owner of repo to the "owner" file. +# - write description in "description" file. +# +# Usage: +# - mkdir -p htmldir && cd htmldir +# - sh example_create.sh + +ORIG_DIR=`pwd` + +# path must be absolute. +reposdir="/srv/git" +curdir="/srv/git/www" + +cd ${curdir} + +# make files per repo. +for dir in "${reposdir}/"*/; do + # strip .git suffix. + r=$(basename "${dir}") + d=$(basename "${dir}" ".git") + printf "%s... " "${d}" + + mkdir -p "${curdir}/${d}" + cd "${curdir}/${d}" || continue + + test -f ${dir}/owner || echo `whoami` >${dir}/owner + test -f ${dir}/url || echo git://git.topo.tw/${d} >${dir}/url + + stagit -c ".cache" -u "https://git.codemadness.nl/$d/" "${reposdir}/${r}" + + # symlinks + ln -sf log.html index.html + ln -sf ../style.css style.css + ln -sf ../logo.png logo.png + ln -sf ../favicon.png favicon.png + + echo "done" +done + +# make index. +stagit-index "${reposdir}/"*/ > "${curdir}/index.html" + +cd ${ORIG_DIR} diff --git a/git/assets/logo.svg b/git/assets/logo.svg new file mode 100644 index 0000000..cde7db3 --- /dev/null +++ b/git/assets/logo.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/git/create.sh b/git/create.sh deleted file mode 100755 index f2f4227..0000000 --- a/git/create.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/bash -# - Makes index for repositories in a single directory. -# - Makes static pages for each repository directory. -# -# NOTE, things to do manually (once) before running this script: -# - copy style.css, logo.png and favicon.png manually, a style.css example -# is included. -# -# - write clone URL, for example "git://git.codemadness.org/dir" to the "url" -# file for each repo. -# - write owner of repo to the "owner" file. -# - write description in "description" file. -# -# Usage: -# - mkdir -p htmldir && cd htmldir -# - sh example_create.sh - -ORIG_DIR=`pwd` - -# path must be absolute. -reposdir="/srv/git" -curdir="/srv/git/www" - -cd ${curdir} - -# make files per repo. -for dir in "${reposdir}/"*/; do - # strip .git suffix. - r=$(basename "${dir}") - d=$(basename "${dir}" ".git") - printf "%s... " "${d}" - - mkdir -p "${curdir}/${d}" - cd "${curdir}/${d}" || continue - - test -f ${dir}/owner || echo `whoami` >${dir}/owner - test -f ${dir}/url || echo git://git.topo.tw/${d} >${dir}/url - - stagit -c ".cache" -u "https://git.codemadness.nl/$d/" "${reposdir}/${r}" - - # symlinks - ln -sf log.html index.html - ln -sf ../style.css style.css - ln -sf ../logo.png logo.png - ln -sf ../favicon.png favicon.png - - echo "done" -done - -# make index. -stagit-index "${reposdir}/"*/ > "${curdir}/index.html" - -cd ${ORIG_DIR} diff --git a/git/git-daemon.service b/git/git-daemon.service index 4641aea..1b13cfa 100644 --- a/git/git-daemon.service +++ b/git/git-daemon.service @@ -4,7 +4,7 @@ Requires=network-online.target After=network-online.target [Service] -ExecStart=/home/pham/git/vps/git/daemon.sh +ExecStart=/home/pham/site/git/daemon.sh WorkingDirectory=/srv/git Restart=always diff --git a/git/logo.svg b/git/logo.svg deleted file mode 100644 index cde7db3..0000000 --- a/git/logo.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file -- cgit v1.2.3-70-g09d2