0 votes
in Git by
What is git stash?

1 Answer

0 votes
by
Git Slash, Often, when you’ve been working on part of your project, things are in a messy state and you want to switch branches for some time to work on something else. The problem is, you don’t want to do a commit of half-done work just so you can get back to this point later. The answer to this issue is Git stash.

Stashing takes your working directory that is, your modified tracked files and staged changes and saves it on a stack of unfinished changes that you can reapply at any time.

Related questions

+1 vote
0 votes
asked Sep 17, 2021 in Interstellar Git by SakshiSharma
0 votes
0 votes
0 votes
asked May 21, 2020 in Git by SakshiSharma
...