forked from nihilist/blog-contributions
13 lines
211 B
Bash
13 lines
211 B
Bash
|
#!/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
|
||
|
|