Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
git
/
Cherry-pick a commit
Cherry-pick a commit
git
Apply a specific commit from another branch
git cherry-pick abc1234
⎘ copy
#git
#cherry-pick
#commits
more git
all 45 commands →
Stash with message
git stash push -m "WIP: feature X"
Show stash list
git stash list
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