refine ui

restore in a Dialog
This commit is contained in:
Christoph Brandau
2026-06-29 17:53:02 +02:00
parent b0491d1479
commit 8d56c3f39f
8 changed files with 293 additions and 97 deletions
+7 -5
View File
@@ -3,11 +3,12 @@
mod git;
use git::{
cancel_code_search, checkout_branch, commit, compare_commits, diff_file_against_working_tree,
get_status, list_branches, list_commits, list_file_history, list_repository_files,
merge_branch, open_repository, pull, push, read_conflict, resolve_conflict,
resolve_conflict_side, restore_file_from_commit, restore_files, restore_to_commit,
search_code_introductions, stage_files, unstage_files, SearchCancellationState,
cancel_code_search, checkout_branch, commit, compare_commits, compare_file_to_head,
diff_file_against_working_tree, get_status, list_branches, list_commits, list_file_history,
list_repository_files, merge_branch, open_repository, pull, push, read_conflict,
resolve_conflict, resolve_conflict_side, restore_file_from_commit, restore_files,
restore_to_commit, search_code_introductions, stage_files, unstage_files,
SearchCancellationState,
};
fn main() {
@@ -32,6 +33,7 @@ fn main() {
list_repository_files,
list_file_history,
compare_commits,
compare_file_to_head,
diff_file_against_working_tree,
search_code_introductions,
cancel_code_search,