InterviewSolution
Saved Bookmarks
| 1. |
What is git stash drop? |
|
Answer» If at any point of time we WANT to REMOVE a single STASHED state from the stash list, we use the command 'git stash DROP'(it will remove the latest from list i.e. stash@{0}) or 'git stash drop stash@{n}'; here stash@{n} must be a valid stash log REFERENCE as displayed in stash list command's output. |
|