2024-02-15 22:42:29 +01:00
|
|
|
#!/bin/bash
|
2024-02-18 11:37:12 +01:00
|
|
|
sudo chown -R nihilist: .
|
2024-02-15 22:42:29 +01:00
|
|
|
git config --global user.email "nihilist@nihilism.network"
|
|
|
|
git config --global user.name "nihilist"
|
|
|
|
|
|
|
|
while :
|
|
|
|
do
|
|
|
|
git add -A
|
|
|
|
git commit
|
|
|
|
git push
|
|
|
|
done
|