Staging from the TUI
While reviewing your working-directory changes, you can stage files directly
from Skim, with no need to drop back to the shell to run git add.
| Key | Action |
|---|---|
a |
Stage the current file (git add) |
A |
Stage all files (git add -A) |
Staging runs git in your working directory, so it behaves exactly like the
equivalent git add command and respects your git configuration.
Next: live refresh & blame.