Repository Status
The status tool shows you a quick summary of the
state of the entire project.
Files are categorized similarly to what you’d see when running
git status
on the command line.
Actions
Clicking the Staged folder shows a diffstat for the index.
Clicking the Modified folder shows a diffstat for the worktree.
Clicking individual files sends diffs to the Diff Display.
Double-clicking individual files adds and removes their content from the index.
Right-click Actions
The Repository Status tool has various actions that
are available through its right-click context menu.
Different actions are available depending a file’s status.
Staged Files
- Unstage Selected
- Remove from the index/staging area with
git reset
- Launch Editor
- Launch the configured visual editor
- Launch Difftool
- Visualize changes with
git difftool
- Remove Unstaged Edits
- Throw away unstaged edits.
Modified Files
- Stage Selected
- Add to the staging area with
git add
- Launch Editor
- Launches the configured visual text editor
- Launch Difftool
- Visualize changes relative to the index with
git difftool
- Remove Unstaged Edits
- Removes unstaged content by checking out selected paths
from the index/staging area
- Remove Uncommited Edits
- Throw away uncommitted edits
Unmerged Files
- Launch Merge Tool
- Resolve conflicts using
git mergetool
- Stage Selected
- Mark as resolved using
git add
- Launch Editor
- Launch the configured visual text editor
Untracked Files
- Stage Selected
- Add to the index/staging area with
git add
- Launch Editor
- Launch the configured visual text editor
- Delete File(s)
- Delete files from the filesystem