summarylogtreecommitdiffstats
path: root/git.sh
blob: de402d198f40d3c5c2498762daf7d70c65868d01 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
mksrcinfo
git add --all .
echo "####################################"
echo "Write your commit comment!"
echo "####################################"
read input
git commit -m "$input"
git push -u origin master