What is GIT stash?
Answer / Ankit Agrawal
Git stash allows you to save your uncommitted changes temporarily, so you can switch branches or work on something else without losing your work. When you're ready to go back to the saved work, you can 'stash apply' or 'stash pop' to retrieve it.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is git fork? What is difference between fork and branch? How to create tag?
What is the purpose of branching and how many branching strategies can you apply?
What is GIT version control?
Mention some of the best graphical GIT client for LINUX?
How is git instaweb used?
What is ‘head’ in git?
How can you fix a broken commit?
Name a few Git repository hosting services
How can you create a repository in Git?
What is git bisect? How can you use it to determine the source of a (regression) bug?
How do you configure a git repository to run code sanity checking tools right before making commits, and preventing them if the test fails?
Explain the difference between rebase and merge?