git-stk 0.7.4

Git-native stacked branch workflow helper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use anyhow::Result;

use crate::commands::Run;

/// Move down the stack: check out the current branch's parent.
#[derive(Debug, clap::Args)]
pub struct Down {}

impl Run for Down {
    fn run(self) -> Result<()> {
        crate::stack::checkout_parent()
    }
}