diff --git a/hands_on/add_tags.py b/hands_on/add_tags.py new file mode 100644 index 0000000..fa1705a --- /dev/null +++ b/hands_on/add_tags.py @@ -0,0 +1,11 @@ +from exercise_utils.cli import run_command + +__requires_git__ = True +__requires_github__ = True + +WORKING_REPO = "samplerepo-preferences" + + +def download(verbose: bool): + run_command(["gh", "repo", "fork", f"git-mastery/{WORKING_REPO}", + "--clone"], verbose)