Fetch всех remote и prune git
Обновить все remote и удалить устаревшие tracking ветки
git fetch --all --prune --tags
more git
all 45 commands →
Изменить сообщение последнего коммита
git commit --amend -m 'new message'
Интерактивный rebase последних N коммитов
git rebase -i HEAD~5
Stash с сообщением
git stash push -m 'wip: feature-x' -- src/
Применить конкретный stash
git stash list && git stash apply stash@{2}
Cherry-pick диапазона коммитов
git cherry-pick A^..B