스택 생성 날짜 가져오기 언제 재고가 생성되었는지 알 수 있는 방법이 있습니까? git stash list스택만 나열됩니다.git stash show XXXXXX에는 모든 파일 및 변경 사항이 표시되지만, 저장소 생성 날짜는 표시되지 않습니다.시도: git stash list --date=local 다음과 같은 내용이 인쇄됩니다. stash@{Thu Mar 21 10:30:17 2013}: WIP on master: 2ffc05b Adding resource 를 사용하여 이 작업을 수행할 수 있습니다.예를 들어, 상대 시간이 포함된 스택 목록이 생성됩니다. git stash list --pretty=format:"%C(red)%h%C(reset) - %C(dim yellow)(%C(bold magenta..