PY-1.4-BP1-MQ80

Objective

Finalizing the Workflow

Now that the feature branch has been successfully merged, delete the local 'feature/add-score-limit' branch to clean up your repository. Prepare to explain the entire workflow you just completed to your mentor.

Check Spec

Before deleting the branch, let's confirm its current state.

Use the appropriate Git command to list your local branches and verify that the feature/add-score-limit branch still exists after the merge.

Implement

Step by step checklist:

  1. Execute the Git command to safely delete the local feature/add-score-limit branch.

The following documentation sections are going to be helpful:

  • Finalizing the Workflow (Branch Cleanup - git branch -d)
  • Summary of the Feature Branch Workflow

Validate

Now, let's verify that the branch was successfully deleted.

Use the Git command to list your local branches again.

Verification Results:

  • ✅ The feature/add-score-limit branch is no longer listed. All verification steps passed!

Debrief

You have successfully completed the feature branching workflow, from creation to cleanup.

Prepare to explain the steps you took throughout this process to your mentor, including:

  • Why feature branches are used.
  • How you created and switched to the branch.
  • How you committed changes on the branch.
  • How you merged the branch into main.
  • How you cleaned up by deleting the branch.

Documentation

Documentation not available for PY-1.4-BP1.