Skip to content

Instantly share code, notes, and snippets.

@verschuur
Created April 29, 2021 12:03
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 verschuur/c6b4fd385449b12f0f2418fabca16144 to your computer and use it in GitHub Desktop.
Save verschuur/c6b4fd385449b12f0f2418fabca16144 to your computer and use it in GitHub Desktop.
Git tips and tricks
// Checkout file from stash
git checkout stash@{0} -- <filename>
// Save file from stash using a different name
git show stash@{0}:<full filename> > <newfile>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment