branchtransfer 0.1.0-DEV

A command line tool to transfer files between git branches
Documentation
1
2
3
4
5
6
7
8
9
10
#![forbid(unsafe_code)]

use branchtransfer::branch_transfer;
mod parser;
use parser::parse_args;

fn main() -> anyhow::Result<()> {
    let (path, srcrel, branch, trgrel, msg) = parse_args()?;
    branch_transfer(path, branch, srcrel, trgrel, msg)
}