Применить stash по индексу git
Применить и удалить конкретный stash
git stash pop stash@{2}
more git
all 45 commands →
Bisect — найти сломавший коммит
git bisect start && git bisect bad HEAD && git bisect good <good-sha>
Worktree — несколько веток
git worktree add ../feature-branch feature/my-feature
Обновить submodule
git submodule update --init --recursive
Файл на конкретном коммите
git show <sha>:path/to/file
Лог с графом веток
git log --oneline --graph --decorate --all | head -40