git-theologist - git-theologist - Randomly select your git master.
HTML git clone git://bitreich.org/git-theologist git://hg6vgqziawt5s4dj.onion/git-theologist
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR README
DIR LICENSE
---
git-theologist (630B)
---
1 #!/bin/sh
2
3 globalroots="god
4 vishnu
5 yahwe
6 jehova
7 myself
8 ahuramazda
9 christ
10 himwhoisthecentralorboftheuniverseitsessenceandultimatepurpose
11 buddha
12 hayyrabbi
13 dravya
14 brahman
15 ishvara
16 atman
17 qi
18 allah
19 elohim
20 elshaddai
21 elelyon
22 rms
23 iamthatiam
24 alrahmen
25 krishna
26 vishnu
27 money
28 nothing"
29
30 globalroot="$(printf "%s" "${globalroots}" | shuf -n 1)"
31 printf "Your global init default branch will be set to: %s\n" \
32 "${globalroot}"
33 printf "Do you want to proceed? [y/N] "
34 read -r answer
35 if [ "${answer}" = "y" ];
36 then
37 git config --global init.defaultBranch "${globalroot}"
38 printf "Your global init default branch is now: %s\n" \
39 "${globalroot}"
40 fi
41