add more features

This commit is contained in:
Christoph Brandau
2026-06-27 13:49:56 +02:00
parent 3b9d636fdb
commit 6a78e768bc
7 changed files with 989 additions and 18 deletions
+7 -4
View File
@@ -3,9 +3,10 @@
mod git;
use git::{
checkout_branch, commit, get_status, list_branches, list_commits, list_file_history,
list_repository_files, merge_branch, open_repository, pull, push, restore_file_from_commit,
restore_files, restore_to_commit, stage_files, unstage_files,
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, restore_file_from_commit, restore_files, restore_to_commit,
stage_files, unstage_files,
};
fn main() {
@@ -26,7 +27,9 @@ fn main() {
restore_file_from_commit,
merge_branch,
list_repository_files,
list_file_history
list_file_history,
compare_commits,
diff_file_against_working_tree
])
.run(tauri::generate_context!())
.expect("error while running tauri application");