Stash с сообщением git
Сохранить незакоммиченную работу (включая untracked) с меткой
git stash push -m 'WIP: feature-x' -u
more git
all 45 commands →
Применить stash по индексу
git stash pop stash@{2}
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