commit 039099acf09c1375b6e462aaaa0ffd33ac849bf7 parent 1db497ce97c7f10029e73abf2a4cffc065c16ff8 Author: masayoshi <masayoshi@example.com> Date: Mon, 23 Feb 2026 17:29:57 +0900 Upload Diffstat:
| A | local.sh | | | 37 | +++++++++++++++++++++++++++++++++++++ |
1 file changed, 37 insertions(+), 0 deletions(-)
diff --git a/local.sh b/local.sh @@ -0,0 +1,37 @@ +#!/bin/sh + +mkdir -p ~/stagit/raku +cd ~/stagit/raku + + +git init -b main +git config user.name "masayoshi" +git config user.email "masayoshi@example.com" + + +echo "My Raku Scripts Collection" > .git/description + + +git remote add origin masayoshi@192.168.1.19:/var/www/stagit/raku.git + + +cat << 'EOF' > README.md +# Raku Scripts Repository + +This repository contains my personal collection of Raku scripts, hosted on an OpenBSD server using **stagit**. + +## Project Goal +The aim of this project is to organise and share various Raku utilities developed for system administration and general tasks. + +## Environment +- **Server:** OpenBSD +- **Generator:** stagit +- **Licence:** ISC Licence + +## Author +- **Name:** masayoshi +EOF + +git add README.md +git commit -m "Initialise project" +git push -u origin main