14 lines
418 B
Python
14 lines
418 B
Python
import argparse as ap
|
|
|
|
|
|
def add_parser(sp: ap._SubParsersAction[ap.ArgumentParser]):
|
|
commit = sp.add_parser(
|
|
"commit", help="apply pending changes and commit to git repo"
|
|
)
|
|
commit.add_argument(
|
|
"-f", "--force", help="force apply (skips prompts)", action="store_true"
|
|
)
|
|
commit.add_argument(
|
|
"--no-render", "-r", help="do not re-render renderables", action="store_true"
|
|
)
|