@@ -63,16 +63,16 @@ def setup(verbose: bool = False):
6363 tag_name = f"git-mastery-start-{ first_commit } "
6464 run_command (["git" , "tag" , tag_name ], verbose )
6565
66- run_command (["git" , "checkout" , "-b" , "A " ], verbose )
66+ run_command (["git" , "checkout" , "-b" , "john " ], verbose )
6767 create_or_update_file ("script.py" , "print('Hello World!')" )
6868 run_command (["git" , "add" , "script.py" ], verbose )
6969 run_command (["git" , "commit" , "-m" , "Hello world" ], verbose )
7070
7171 run_command (["git" , "checkout" , "main" ], verbose )
72- run_command (["git" , "checkout" , "-b" , "B " ], verbose )
72+ run_command (["git" , "checkout" , "-b" , "josh " ], verbose )
7373 create_or_update_file ("script.py" , "print('Hello Everyone!')" )
7474 run_command (["git" , "add" , "script.py" ], verbose )
7575 run_command (["git" , "commit" , "-m" , "Hello everyone" ], verbose )
7676
7777 run_command (["git" , "checkout" , "main" ], verbose )
78- run_command (["git" , "merge" , "A " , "--no-edit" ], verbose )
78+ run_command (["git" , "merge" , "john " , "--no-edit" ], verbose )
0 commit comments