Skip to content

Instantly share code, notes, and snippets.

@VinnyFonseca
Created March 13, 2020 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VinnyFonseca/86c129d7f16690d4355344d10a593204 to your computer and use it in GitHub Desktop.
Save VinnyFonseca/86c129d7f16690d4355344d10a593204 to your computer and use it in GitHub Desktop.
#!/bin/bash
git stash list
echo "Enter stash number to rename"
read stash_number
echo "Enter new name"
read new_name
stash_name="stash@{${stash_number}}"
echo "$stash_name"
rev=$(git rev-parse $stash_name)
git stash drop $stash_name || exit 1
git stash store -m "$new_name" $rev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment