local.sh (792B)
1 #!/bin/sh 2 3 mkdir -p ~/stagit/raku 4 cd ~/stagit/raku 5 6 7 git init -b main 8 git config user.name "masayoshi" 9 git config user.email "masayoshi@example.com" 10 11 12 echo "My Raku Scripts Collection" > .git/description 13 14 15 git remote add origin masayoshi@192.168.1.19:/var/www/stagit/raku.git 16 17 18 cat << 'EOF' > README.md 19 # Raku Scripts Repository 20 21 This repository contains my personal collection of Raku scripts, hosted on an OpenBSD server using **stagit**. 22 23 ## Project Goal 24 The aim of this project is to organise and share various Raku utilities developed for system administration and general tasks. 25 26 ## Environment 27 - **Server:** OpenBSD 28 - **Generator:** stagit 29 - **Licence:** ISC Licence 30 31 ## Author 32 - **Name:** masayoshi 33 EOF 34 35 git add README.md 36 git commit -m "Initialise project" 37 git push -u origin main