git_ui.rs
1use ::settings::Settings;
2use gpui::{actions, AppContext};
3use settings::GitPanelSettings;
4
5pub mod git_panel;
6mod settings;
7
8actions!(
9 git_ui,
10 [
11 StageAll,
12 UnstageAll,
13 DiscardAll,
14 CommitStagedChanges,
15 CommitAllChanges
16 ]
17);
18
19pub fn init(cx: &mut AppContext) {
20 GitPanelSettings::register(cx);
21}