diff --git a/cs-fundamentals/git.md b/cs-fundamentals/git.md
index 31101d9d729a0635617c245cae1b64294bfcb167..9b225adc763a1d933ca7a8d4f682e60725c5127d 100644
--- a/cs-fundamentals/git.md
+++ b/cs-fundamentals/git.md
@@ -41,22 +41,23 @@ Here are some things you are not to put in git:
 
 ## Deliverables
 
-Follow the instructions in the main CS-fun [README](README.md).
+Before starting, make sure you have completed the instructions in the main CS-fun [README](README.md).
 You do NOT need to create a new repository, you can use the one you have already created for this class.
-
-In summary:
-
+You should already have completed these steps:
 * Create a project in GitLab > Skills Course.
 * Add instructors to your project.
 * Clone it to your workstation.
 * Add your initial README.
 
-Step-by-step details are in the [README](README.md).
+After setup, complete the following:
+1. Add a `.gitignore` file that excludes image and video files as per the **WARNINGS** section. Add, commit, and push.
+
+2. Create a new branch called "hello-branch" with the `branch` command and switch to it with the `checkout` command. Make an edit to a file while in this new branch and add, commit, push.
 
-After setup, you are to add a `.gitignore` file that excludes image and video files as per the **WARNINGS** section.
+3. Check out the page for your repo on Gitlab. You should see a drop-down menu under the repository title with the "main" and "hello-branch" branches.
 
-After you have committed and pushed `.gitignore`, make and merge your first branch. Checkout a branch called `hello-branch`, edit a file, commit, and merge `hello-branch` into `main`. Then push to remote.
+4. Back on your local copy, you should now `merge` "hello-branch" back into main and add, commit, push.
 
-This concludes the git-centric subunit, but your work with git will continue throughout this course/your career.
+5. As your deliverable, submit the URL to your commit history showing the new branch, and it's subsequent merge back into the main branch.
 
-Your evaluation for the git unit will also include your git commit history for your project. Using git, writing good commit messages, frequency of adds versus commits versus pushes, etc. will all be considered.
+This concludes the git-centric subunit, but your work with git will continue throughout this course/your career. Your evaluation for the git unit will also include your git commit history for your project. Using git, writing good commit messages, frequency of adds versus commits versus pushes, etc. will all be considered.