Introduce primitives in GitStore to support reviewing assistant diffs (#27576)

Release Notes:

- N/A
This commit is contained in:
Antonio Scandurra
2025-03-27 09:46:31 +00:00
committed by GitHub
parent cd6b1d32d0
commit 82a06f0ca9
7 changed files with 666 additions and 63 deletions
+1 -1
View File
@@ -2259,7 +2259,7 @@ impl GitPanel {
let repo = repo.read(cx);
for entry in repo.status() {
for entry in repo.cached_status() {
let is_conflict = repo.has_conflict(&entry.repo_path);
let is_new = entry.status.is_created();
let staging = entry.status.staging();
+1 -1
View File
@@ -339,7 +339,7 @@ impl ProjectDiff {
let mut result = vec![];
repo.update(cx, |repo, cx| {
for entry in repo.status() {
for entry in repo.cached_status() {
if !entry.status.has_changes() {
continue;
}