tij 0.4.16

Text-mode interface for Jujutsu - a TUI for jj version control
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Rebase operation mode
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum RebaseMode {
    /// `-r`: Move single revision (descendants rebased onto parent)
    #[default]
    Revision,
    /// `-s`: Move revision and all descendants together
    Source,
    /// `-b`: Move entire branch (relative to destination's ancestors)
    Branch,
    /// `-A`: Insert revision after target in history
    InsertAfter,
    /// `-B`: Insert revision before target in history
    InsertBefore,
}