Let's say you have been working on a branch. You decide that you want to git stash your changes and continue working on something else. Later when you checkout on your branch to unstash your stashed work and commit it, what date will be shown in the commit history after you make a push?
Will the date be the time of stashing or the time of the actual commit of the unstashed files?
shelvechanges? I know this functionality is IDE specific and not part of git, but is it the same as it is with stashing / unstashing changes?