diff --git a/src/gitutils/branch.py b/src/gitutils/branch.py index d37886e..fa35308 100644 --- a/src/gitutils/branch.py +++ b/src/gitutils/branch.py @@ -78,3 +78,7 @@ def cli(): _log(P.verbose) asyncio.run(git_branch(P.mainbranch, P.path)) + + +if __name__ == "__main__": + cli() diff --git a/src/gitutils/pull.py b/src/gitutils/pull.py index 006e102..a667bad 100644 --- a/src/gitutils/pull.py +++ b/src/gitutils/pull.py @@ -92,3 +92,7 @@ def git_pull_cli(): _log(P.verbose) asyncio.run(git_pullfetch("pull", P.path)) + + +if __name__ == "__main__": + git_pull_cli()