Apply stash by index git
Apply and drop a specific stash entry
git stash pop stash@{2}
more git
all 45 commands →
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
Log with graph
git log --oneline --graph --decorate --all | head -40