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
alias ck='ps -U $USER -o pid -o comm | grep -E "*node*" | sed -e 's/node$//' | xargs kill -9' |
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
src=$1 | |
dest=$2 | |
current_directory=$(pwd) | |
cd $src | |
stashes=$(git stash list) | |
IFS=$'\n' | |
stash_messages=() | |
for stash in $stashes; do |