mirror of
http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/blog-contributions.git
synced 2025-07-02 11:56:40 +00:00
12 lines
211 B
Bash
Executable file
12 lines
211 B
Bash
Executable file
#!/bin/bash
|
|
sudo chown -R nihilist: .
|
|
git config --global user.email "nihilist@nihilism.network"
|
|
git config --global user.name "nihilist"
|
|
|
|
while :
|
|
do
|
|
git add -A
|
|
git commit
|
|
git push
|
|
done
|
|
|