git stash is a mechanism to postpone changes. I see that it is used most often when you are in the middle of writing new functions, but should switch to something of a higher priority.
If you want to see a list of your stamps, you can go with git stash list and see something similar to the following:
git stash list stash@ {0}: WIP on master: 46dbc13 Ayarlar activity geri butonu
If you want to apply your changes, you will either have to go with one of the following two commands:
Pop : this will pull the top line from your stack
git stash pop
Apply: This will apply the specified case. If your git stash list has only one cache (as mentioned above), you can use this. If you have several delays, you need to apply the specific print run that you want to apply.
git stash apply stash@ {0}
source share