Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
git
/
Show stash list
Show stash list
git
Show all stashed changesets
git stash list
⎘ copy
#git
#stash
#list
more git
all 45 commands →
Apply stash by index
git stash apply stash@{2}
Find which commit introduced a bug
git bisect start && git bisect bad && git bisect good v1.0
Show file change history
git log --follow -p -- path/to/file.py
Undo last commit (keep changes)
git reset --soft HEAD~1
Clean untracked files
git clean -fd