git simpanan mengambil satu file
# To retrieve a specific file from a previous staash
# any of these alternatives will do
git checkout "stash@{0}" -- my-stashed-file.xyz
git show "stash@{0}":my-stashed-file.xyz > my-renamed-stashed-file.xyz
git show "stash@{0}":./path/to/my-stashed-file.xyz > my-renamed-stashed-file.xyz
Muddy Moose