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 |
How can you create a repository in Git?
What is the function of ‘git config’?
What is GIT version control?
How to create tag?
What is git bisect?
Explain the difference between rebase and merge?
What is git bisect? How can you use it to determine the source of a (regression) bug?
What commands will you use to bring a new feature to the main branch?
Name some git commands and also explain their functions?
Name a few git commands and explain their usage.
What is git fork? What is the difference between fork, branch, and clone?
What is the purpose of branching and how many branching strategies can you apply?