I had some particular uncommitted changes in my development branch and I stashed them using git stash
command, and I am re applying those stashed changes using git pop
command.
But this specific state I want to preserve (If possible then may me in some text format).
Because there are many times I have some uncommitted changes which are not particular I am doing that just sake for branch changing activity so my particular stashed changes get overlapped(removed). So I want to preserve that particular stash.
Is there any chance I can preserve the specific stashed changes in some file if possible?