To list all stashes in your Git repository, you can use the following command:
git stash list
This command will display a list of all the stashes you have created, showing their index and any messages you added when stashing. The output will look something like this:
stash@{0}: On master: Added test2.txt
stash@{1}: On master: Added test.txt
If you have any further questions or need more assistance, feel free to ask!
