This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Prepending text to the five most recent commit messages: | |
git filter-branch --msg-filter 'sed "s/\(.*\)/[prepended text] \1/g"' HEAD~5..HEAD | |
# Appending text to the five most recent commit messages: | |
git filter-branch --msg-filter 'sed "s/\(.*\)/\1 [appended text]/g"' HEAD~5..HEAD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Configuration | |
KUMA_ROOT=/path/to/kuma | |
# Script | |
# https://www.youtube.com/watch?v=ckIMuvumYrg | |
pushd . | |
cd $KUMA_ROOT | |
vagrant halt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Adapted from: https://gist.github.com/mythmon/4151152 | |
export LEEROY_URL="https://leeroybot.herokuapp.com/" | |
LEEROY_RERUN="https://raw.github.com/lonnen/leeroy-rerun/master/leeroy-rerun.py" | |
# Usage | |
[[ -z $1 ]] && { | |
echo "Rerun a Leeroy job for Kuma." |
NewerOlder