GitDiffView
A Sublime Text plugin that lets you see all modified files and preview their changes.
Details
Installs
- Total 5K
- Win 0
- Mac 2K
- Linux 2K
| Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Mac | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 2 | 0 | 1 | 0 | 1 | 0 | 3 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 3 | 0 | 2 | 0 | 1 |
| Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 3 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Git Diff View
Get a quick overview of changes before committing them.
Features
- Show modified files (AKA “Status View”)
- View diff for a file. (AKA “Diff View”)
- Stage/Unstage files/hunks
- Discard changes to files/hunks
- Goto a file

Getting Started
Open the command palette and run Package Control: Install Package, then select GitDiffView.
Toggle the git diff view with ctrl+shift+g(Linux) or alt+shift+g(Mac) or via the command palette by selecting: Git Diff View: Toggle.
The git diff view won't open if there are no git changes.
Keybindings in Status View (the right view)
- a / space - stage/unstage file
- d / backspace - dismiss file changes
- g - open file
Keybindings in Diff View (the left view)
- a / space - stage/unstage hunk
- d / backspace - dismiss hunk change
Type of modification will be shown in the git status, next to the file name. Here is a list of the types:
"??" - Untracked
" A" - Added
"AM" - Added and Staged
" M" - Modified
"MM" - Modified and Staged
" D" - Deleted
" R" - Renamed
" C" - Copied
"UU" - Unmerged(Conflict)
Workflow Example
NOTE: For other commands like
git commit,git push,git pull, use a different plugin like Git or GitSavvy.