Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ No changes yet.

---

## [1.0.1] - 2026-03-15

### Fixed

- The **Select File** inline action now also appears for partially staged files, not just fully unstaged ones.

---

## [1.0.0] - 2026-03-08

### Added
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,11 @@ All staging state reflects the actual Git index.

![Partial line staging demo](media/demo_partial_stage.gif)


Git Worklists supports staging individual lines directly from the editor or diff view.

1. Open a file diff or source file
2. Select the lines you want to stage
3. Right-click **GW: Stage Selected Lines**
3. Right-click -> **GW: Stage Selected Lines**

Only the selected changes are staged. The rest of the file remains unstaged.

Expand Down Expand Up @@ -260,7 +259,7 @@ Per-stash context actions:

- **Apply Stash** restore changes without removing stash; files are returned to their originating changelist
- **Pop Stash** restore changes and remove stash; files are returned to their originating changelist
- **Delete Stash** drop stash with confirmation
- **Delete Stash** drop stash with confirmation
- Refresh support

---
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@
},
{
"command": "gitWorklists.selectFile",
"when": "view == gitWorklists.changelists && viewItem == gitWorklists.file.unstaged",
"when": "view == gitWorklists.changelists && (viewItem == gitWorklists.file.unstaged || viewItem == gitWorklists.file.partial)",
"group": "inline@1"
},
{
Expand Down
Loading