Answer Posted / Deepa Devi
1) Git Stash - This command allows you to save your uncommitted changes away, so that you can switch to a different branch or work on something else temporarily without losing the current changes. You can come back to them later using `git stash apply`. 2) Git Stash Drop - After applying stashed changes or when they are no longer needed, you can use `git stash drop` to remove them from the stash list.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers