Stash с сообщением git
Сохранить только src/ в stash с описательным именем
git stash push -m 'wip: feature-x' -- src/
more git
all 45 commands →
Применить конкретный stash
git stash list && git stash apply stash@{2}
Cherry-pick диапазона коммитов
git cherry-pick A^..B
Кто изменил строку (blame)
git blame -L 10,25 --date=short src/main.py
Найти коммит с багом (bisect)
git bisect start && git bisect bad HEAD && git bisect good v1.0
Изменённые файлы между ветками
git diff --name-status main..feature/x