Back
Is there a way to tell when a stash was created?
git stash list
only lists the stashes, and git stash show Nothing but xxxx
shows all the files and changes, but not the date of the stash creation.
To get the creation date of a stash you could use:
git stash list --date=local
The output will be something like:
stash@{Thu October 24 10:30:17 2019}: WIP on master: 2ffc05b Adding resource
Refer: https://git-scm.com/docs/git-stash#Documentation/git-stash.txt-listltoptionsgt
31k questions
32.8k answers
501 comments
693 users