temp / g
3v324v23's picture
Commit : 125
7fd7b70
raw
history blame contribute delete
219 Bytes
#!/bin/bash
#this is a shortcut for pushing project to github
loober=$(cat ~/counter.txt)
commit_message="Commit : $loober"
git add .
git commit -m "$commit_message"
git push
((loober++))
echo "$loober" > ~/counter.txt