예제 #1
0
def config_set_rebase(_) -> None:
    """Clowder config set rebase command entry point"""

    CONSOLE.stdout(' - Set rebase config value')
    config = Config()
    config.rebase = True
    config.save()
예제 #2
0
def config_clear_rebase(_) -> None:
    """Clowder config clear rebase command entry point"""

    CONSOLE.stdout(' - Clear rebase config value')
    config = Config()
    config.rebase = None
    config.save()