What are git stash and git stash drop?
Answer / 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 |
What is the command you can use to write a commit message?
What is git fork? What is the difference between fork, branch, and clone?
What does ‘hooks’ comprise of in git?
Why GIT better than Subversion?
What is the difference between fork, branch, and clone?
What is GIT version control?
What is git reflog?
Why is it desirable to create an additional commit rather than amending an existing commit?
Name a few git commands?
What commands will you use to bring a new feature to the main branch?
What is a “conflict” in git and how is it resolved?
What does commit object contain?