Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
git
/
Cherry-pick коммита
Cherry-pick коммита
git
Применить конкретный коммит из другой ветки
git cherry-pick abc1234
⎘ copy
#git
#cherry-pick
#commits
more git
all 45 commands →
Stash с сообщением
git stash push -m "WIP: feature X"
Список stash
git stash list
Применить stash по индексу
git stash apply stash@{2}
Найти коммит, который внёс баг
git bisect start && git bisect bad && git bisect good v1.0
История изменений файла
git log --follow -p -- path/to/file.py