Compare commits

...

5 Commits

Author SHA1 Message Date
Fulton Browne 6d063073f0 done 2021-03-21 20:53:02 +00:00
Fulton Browne 6fceb1e3e0 syntax 2021-03-21 20:45:14 +00:00
Fulton Browne fd025ff076 added mirror scripts 2021-03-21 20:41:40 +00:00
Fulton Browne eb99f931ff fixed git config (I think) 2021-03-21 20:20:57 +00:00
glenda 72d9e40787 just pushing this to the server for testing 2021-03-21 20:17:22 +00:00
3 changed files with 32 additions and 0 deletions

4
lib/git/config Normal file
View File

@ -0,0 +1,4 @@
[user]
name=Fulton Browne
email=git@fulton.software

21
mirror/gen Executable file
View File

@ -0,0 +1,21 @@
#! /bin/rc -e
cd $1
repos=( \
'https://git.sr.ht/~ft/zuke' \
'https://git.sr.ht/~ft/libtags' \
'https://git.sr.ht/~ft/bar' \
'https://git.sr.ht/~ft/jacksense' \
'https://git.sr.ht/~ft/orca' \
'git://orib.dev/git9' \
'https://git.sr.ht/~julienxx/castor9' \
'https://github.com/telephil9/gopher' \
'https://git.sr.ht/~ft/gemnine' \
'https://git.sr.ht/~ft/neindaw' \
'https://git.sr.ht/~ft/picker' \
'https://git.sr.ht/~kvik/mq' \
)
for (i in $repos){
git/clone $i
}

7
mirror/pull Executable file
View File

@ -0,0 +1,7 @@
#! /bin/rc -e
cd $1
for (i in *){
cd $i
git/pull
cd ..
}