Pas facile de connaître toutes les options dans git
, aujourd'hui j'ai découvert l'option --date
de git stash
.
Sans l'option :
git stash list
stash@{0}: WIP on master: 81a756c Adding my first git article
Avec l'option :
git stash list --date=local
stash@{Sat Feb 23 11:07:55 2019}: WIP on master: 81a756c Adding my first git article
C'est quand même beaucoup mieux !
Source : Stack Overflow.