Checking some relations and capabilities between client-server model, GitHub & Git.
Making this repo most committed one
- Committing and pushing from GitHub to GitHub.
- Running
combine.shvia workflows to achive 1. step
combine.sh
#!/bin/bash
git pull
for i in {1..800000}
do
#echo $i >> can/$i.txt
# rm can/$i.txt
echo $i >> garbage.txt
git add .
git commit -m 'github ist bombastisch'
done
git push...