Karl Semich commited on
Commit
e193b76
0 Parent(s):
Files changed (3) hide show
  1. .gitmodules +3 -0
  2. git2jsonl +1 -0
  3. makefile +8 -0
.gitmodules ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ [submodule "git2jsonl"]
2
+ path = git2jsonl
3
+ url = https://github.com/xloem/git2jsonl
git2jsonl ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit ddd266716b2590ae39b066b39a04bc8db1dc22da
makefile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ default: github/xfce-mirror/xfce4-terminal.rwkv.json
2
+
3
+ github/%.rwkv.json: github/%.git/
4
+ { git2jsonl/git2jsonl "$^"; git2jsonl/git2jsonl_base64 "$^"; } | sort --random-sort --random-source=/dev/zero > "$@" || { rm "$@"; false; }
5
+
6
+ github/%.git/:
7
+ mkdir -p "$$(dirname "$*")"
8
+ git clone --mirror https://github.com/"$*" "$@"