Using the command line in your local Pong game repository, create a new Git branch named 'feature/add-score-limit' and list all local branches to verify its creation.
Using the command line in your local Pong game repository, create a new Git branch named 'feature/add-score-limit' and list all local branches to verify its creation.
Before we begin, let's understand the current state and the target specification.
Your current state is a local Git repository, likely on the main
branch.
The specification requires you to:
feature/add-score-limit
.We will use Git command-line tools to achieve and verify this.
main
Branchgit branch
)Now that you have executed the commands, let's validate the results.
Verification Steps:
feature/add-score-limit
is present in the list.Expected Verification Results:
feature/add-score-limit
.If the new branch is listed, you have successfully completed the objective!