Add stash picker

This commit is contained in:
Alvaro Parker 2025-08-09 12:53:33 -04:00
parent 3498ba894e
commit 6a09300c63
No known key found for this signature in database
11 changed files with 500 additions and 10 deletions

View file

@ -416,7 +416,19 @@ impl GitRepository for FakeGitRepository {
unimplemented!()
}
fn stash_pop(&self, _env: Arc<HashMap<String, String>>) -> BoxFuture<'_, Result<()>> {
fn stash_pop(
&self,
_index: Option<usize>,
_env: Arc<HashMap<String, String>>,
) -> BoxFuture<'_, Result<()>> {
unimplemented!()
}
fn stash_drop(
&self,
_index: Option<usize>,
_env: Arc<HashMap<String, String>>,
) -> BoxFuture<'_, Result<()>> {
unimplemented!()
}