This file contains hidden or 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
#!/usr/bin/env bash | |
# Cherry pick a list of commit hashes coming from a file | |
LIST_FILE="${1}" | |
if [ "${LIST_FILE}" = "" ] ; then | |
echo "Pleas give path to commit list file!" | |
echo "Usage: cherry-pick-list <file/to/picklist>" | |
exit 1 | |
fi |