I hava a file A and 2 stash both modified file A, then I ran the command 'git stash pop' twice.
The result is first stash popped successfully,but second stash occur an error like below:
error: Your local changes to the following files would be overwritten by merge: A
Please, commit your changes or stash them before you can merge. Aborting
I need both the 2 stash, and I dont want a commit after first stash pop. So how can I fix this problem?Is There a way for me to merge this 2 stash and then just pop once to meet my request?