Risposte:
Provare:
git stash list --date=local
Dovrebbe stampare qualcosa del tipo:
stash@{Thu Mar 21 10:30:17 2013}: WIP on master: 2ffc05b Adding resource
git stash list --date=relative
. Degno di nota è che la --date
sta venendo dal git log
comando, non stash
per sé, vedi qui per i possibili --date
valori: stackoverflow.com/questions/7853332/git-log-date-formats
[alias] stashlist = "stash list --date=local"
al mio file ~ / .gitconfig
git stash list --date=short
solo per la data, nel formato AAAA-MM-GG a larghezza fissa che è facile da scansionare visivamente.
È possibile utilizzare --pretty=format
per raggiungere questo obiettivo. Ad esempio, questo produce un elenco di stash che include un tempo relativo:
git stash list --pretty=format:"%C(red)%h%C(reset) - %C(dim yellow)(%C(bold magenta)%gd%C(dim yellow))%C(reset) %<(70,trunc)%s %C(green)(%cr) %C(bold blue)<%an>%C(reset)"
Ho questo set nella [alias]
sezione del mio ~/.gitconfig
file, in modo da poterlo associare a un semplice sl
comando:
[alias]
co = checkout
lg = log --graph --pretty=format:\"%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset\" --abbrev-commit
rl = reflog --pretty=format:\"%Cred%h%Creset %C(auto)%gd%Creset %C(auto)%gs%C(reset) %C(green)(%cr)%C(reset) %C(bold blue)<%an>%Creset\" --abbrev-commit
sl = stash list --pretty=format:\"%C(red)%h%C(reset) - %C(dim yellow)(%C(bold magenta)%gd%C(dim yellow))%C(reset) %<(70,trunc)%s %C(green)(%cr) %C(bold blue)<%an>%C(reset)\"
(Puoi vedere che ho anche markup simili per log
e reflog
)
Se si desidera mostrare la data effettiva, anziché un'ora relativa, sostituirla %(cr)
con %(ci)
.
git show stash@{0}
stampa anche la data, insieme alle altre informazioni.