Stash with message git
Save uncommitted work (including untracked files) with a label
git stash push -m 'WIP: feature-x' -u
more git
all 45 commands →
Apply stash by index
git stash pop stash@{2}
Bisect — find broken commit
git bisect start && git bisect bad HEAD && git bisect good <good-sha>
Worktree — multiple branches
git worktree add ../feature-branch feature/my-feature
Submodule update
git submodule update --init --recursive
Show file at specific commit
git show <sha>:path/to/file