Skip to content

Instantly share code, notes, and snippets.

@uilian
Last active December 9, 2019 12:16
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 uilian/db4919faea46fc7867a9019576d96421 to your computer and use it in GitHub Desktop.
Save uilian/db4919faea46fc7867a9019576d96421 to your computer and use it in GitHub Desktop.
Git Stash
# list stash content without applying
git stash show -p stash@{1}
git stash show -p stash@{0} --name-only
# apply specific file
git checkout stash@{2} -- FILE_PATH/FILE_NAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment