Git askpass (#25953)

Supersedes #25848

Release Notes:

- git: Supporting push/pull/fetch when remote requires auth

---------

Co-authored-by: Mikayla Maki <mikayla.c.maki@gmail.com>
This commit is contained in:
Conrad Irwin
2025-03-06 05:20:06 +00:00
committed by GitHub
co-authored by Mikayla Maki
parent 6fdb666bb7
commit c34357e2ab
29 changed files with 864 additions and 379 deletions
+9 -2
View File
@@ -87,8 +87,15 @@ impl HeadlessProject {
buffer_store
});
let git_store =
cx.new(|cx| GitStore::new(&worktree_store, buffer_store.clone(), None, None, cx));
let git_store = cx.new(|cx| {
GitStore::new(
&worktree_store,
buffer_store.clone(),
session.clone().into(),
None,
cx,
)
});
let prettier_store = cx.new(|cx| {
PrettierStore::new(
node_runtime.clone(),