Skip to content

Instantly share code, notes, and snippets.

@diegolirio
Created May 26, 2024 13:46
Show Gist options
  • Save diegolirio/d11469b52ebd7b84fac0e977fa87522f to your computer and use it in GitHub Desktop.
Save diegolirio/d11469b52ebd7b84fac0e977fa87522f to your computer and use it in GitHub Desktop.

Git

Stash (Hiding changes)

To see stash stored to apply again

git stash list 

Stashing changes (you can use the command above to see it)

git stash

Applying changes stashed

git stash apply stash@{0}

Ref.: https://git-scm.com/docs/git-stash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment