Guest User

Untitled

a guest
Nov 22nd, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. tvl@rocinante:~/src/gb $ git stash list
  2. stash@{0}: On master: Levels
  3. stash@{1}: On master: Readme stuff
  4. stash@{2}: On master: Refactor
  5. stash@{3}: filter-branch: rewrite
  6. tvl@rocinante:~/src/gb $ git stash drop stash@{3}
  7. 'stash@{3}' is not a stash reference
  8. tvl@rocinante:~/src/gb $ git stash drop 3
  9. '3' is not a stash reference
  10. tvl@rocinante:~/src/gb $ git stash pop 3
  11. '3' is not a stash reference
  12. tvl@rocinante:~/src/gb $ git stash pop stash@{3}
  13. 'stash@{3}' is not a stash reference
  14. tvl@rocinante:~/src/gb $ git show stash@{3}
  15. # works, shows patch
  16. tvl@rocinante:~/src/gb $ git stash show 3
  17. '3' is not a stash-like commit
  18. tvl@rocinante:~/src/gb $ git stash show stash@{3}
  19. 'stash@{3}' is not a stash-like commit
Add Comment
Please, Sign In to add comment