3v324v23's picture
Commit : 103
bf56825
raw
history blame
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