initial commit

This commit is contained in:
2025-01-12 19:54:41 -06:00
commit f637529a8d
52 changed files with 2190 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
def title(text) -> None:
border_char = '='
print(f"\n{text}\n{border_char * len(text)}")
def instructions(text) -> None:
print(f"{text}\n")
worktree_instructions = """Name the worktree directory.
This can be different than your branch name.
"""
commit_instructions = """Some great commit instructions..."""