Add bash script that adds all changes and commits them with a random message provided by whatthecommit.com
This commit is contained in:
parent
6b666d6266
commit
56fd7cc055
1 changed files with 4 additions and 0 deletions
4
bin/whatthecommit
Executable file
4
bin/whatthecommit
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
git add .
|
||||
curl -s whatthecommit.com | sed 's/<[^>]\+>//g' | sed '1,39d' | head -1 | xargs -0 git commit -m
|
Loading…
Reference in a new issue