|
1 | 1 | use ::proto::{FromProto, ToProto};
|
2 |
| -use anyhow::{anyhow, Context as _, Result}; |
| 2 | +use anyhow::{anyhow, Result}; |
3 | 3 | use extension::ExtensionHostProxy;
|
4 | 4 | use extension_host::headless_host::HeadlessExtensionStore;
|
5 | 5 | use fs::Fs;
|
6 |
| -use git::repository::RepoPath; |
7 |
| -use gpui::{App, AppContext as _, AsyncApp, Context, Entity, PromptLevel, SharedString}; |
| 6 | +use gpui::{App, AppContext as _, AsyncApp, Context, Entity, PromptLevel}; |
8 | 7 | use http_client::HttpClient;
|
9 | 8 | use language::{proto::serialize_operation, Buffer, BufferEvent, LanguageRegistry};
|
10 | 9 | use node_runtime::NodeRuntime;
|
11 | 10 | use project::{
|
12 | 11 | buffer_store::{BufferStore, BufferStoreEvent},
|
13 |
| - git::{GitStore, Repository}, |
| 12 | + git::GitStore, |
14 | 13 | project_settings::SettingsObserver,
|
15 | 14 | search::SearchQuery,
|
16 | 15 | task_store::TaskStore,
|
17 | 16 | worktree_store::WorktreeStore,
|
18 |
| - LspStore, LspStoreEvent, PrettierStore, ProjectEntryId, ProjectPath, ToolchainStore, |
19 |
| - WorktreeId, |
| 17 | + LspStore, LspStoreEvent, PrettierStore, ProjectPath, ToolchainStore, WorktreeId, |
20 | 18 | };
|
21 | 19 | use remote::ssh_session::ChannelClient;
|
22 | 20 | use rpc::{
|
@@ -83,14 +81,14 @@ impl HeadlessProject {
|
83 | 81 | store
|
84 | 82 | });
|
85 | 83 |
|
86 |
| - let git_store = |
87 |
| - cx.new(|cx| GitStore::new(&worktree_store, buffer_store.clone(), None, None, cx)); |
88 |
| - |
89 | 84 | let buffer_store = cx.new(|cx| {
|
90 | 85 | let mut buffer_store = BufferStore::local(worktree_store.clone(), cx);
|
91 | 86 | buffer_store.shared(SSH_PROJECT_ID, session.clone().into(), cx);
|
92 | 87 | buffer_store
|
93 | 88 | });
|
| 89 | + |
| 90 | + let git_store = |
| 91 | + cx.new(|cx| GitStore::new(&worktree_store, buffer_store.clone(), None, None, cx)); |
94 | 92 | let prettier_store = cx.new(|cx| {
|
95 | 93 | PrettierStore::new(
|
96 | 94 | node_runtime.clone(),
|
|
0 commit comments