From 3222f7dfcca28fa5d13e0c0409ebf92677711dcf Mon Sep 17 00:00:00 2001 From: druid520 Date: Sat, 15 Aug 2026 21:59:06 +0000 Subject: irc page + git:// clone docs --- git.html | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'git.html') diff --git a/git.html b/git.html index 85aa781..acf054a 100644 --- a/git.html +++ b/git.html @@ -8,11 +8,11 @@

git.0druid.cc

-

homepage. git.

+

homepage. git. irc.

this is my git forge. its invite only, accounts are made by me, and everything is public to clone but only people with accounts can push. if you want an account, email me with your ssh pubkey.

browsing happens at git.0druid.cc, with the usual stuff: commits, tree, refs, diffs n such.

-

clone over https (read only):

-
git clone https://git.0druid.cc/druid520/site.git
+

clone over git:// (anonymous, read only):

+
git clone git://git.0druid.cc/druid520/site.git

clone and push over ssh (accounts only):

git clone git:druid520/site.git

accounts get ssh commands too:

@@ -21,11 +21,18 @@ ssh git desc <repo> "description" ssh git perms <repo> +WRITERS <user> ssh git ls

put this in ~/.ssh/config:

-
Host git
+	
Host serv
+    HostName 0druid.cc
+    User root
+    Port 3447
+    IdentityFile ~/.ssh/serv
+    ProxyCommand sh -c "nc -z -w 1 %h 47910; exec nc %h %p"
+
+Host git
     HostName git.0druid.cc
     User git
     Port 3447
-    IdentityFile ~/.ssh/id_ed25519
+    IdentityFile ~/.ssh/druid
     ProxyCommand sh -c "nc -z -w 1 %h 47910; exec nc %h %p"

the serv host is the server itself, it knocks a secret port before ssh answers so scanners see nothing. the git host is the same machine, same deal.

profiles: push a repo named the same as your username (like druid520/druid520) with a profile.png and a readme.djot in it, first line like this:

-- cgit 1.4.1