From b99003ea57801572185a8a4a19724637afc274de Mon Sep 17 00:00:00 2001
From: "Eisenberg, Daniel (CIV)" <daniel.eisenberg@nps.edu>
Date: Wed, 6 May 2020 11:34:54 -0700
Subject: [PATCH] Update gitlab-commit_and_push.ipynb to use more explicit
 examples.

---
 gitlab-commit_and_push.ipynb | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gitlab-commit_and_push.ipynb b/gitlab-commit_and_push.ipynb
index 48cee2d..6fe7d09 100644
--- a/gitlab-commit_and_push.ipynb
+++ b/gitlab-commit_and_push.ipynb
@@ -18,7 +18,7 @@
    "source": [
     "# Startup git\n",
     "\n",
-    "Replace /example/filepath/etc with the filepath of your git directory."
+    "Replace /filepath/filename with the filepath of your git repository. For example, if you want to work in the usvi-transportation repository, use"
    ]
   },
   {
@@ -27,7 +27,7 @@
    "metadata": {},
    "outputs": [],
    "source": [
-    "cd /example/filepath/etc"
+    "cd /example/filepath/usvi-transportation"
    ]
   },
   {
@@ -85,7 +85,7 @@
    "metadata": {},
    "source": [
     "<h4>Step 2</h4>\n",
-    "Choose file to commit. Replace /example/filepath/etc with the filepath of the file you would like to commit. (Note: If you would like to commit multiple files at once with the same commit message, you can do so by adding the parent folder of all edited files.)"
+    "Choose file to commit. Replace /filepath/filename with the filepath and the filename you would like to commit. (Note: If you would like to commit multiple files at once with the same commit message, you can do so by adding the parent folder of all edited files.) For example, if you would like to add the gis folder in the usvi-transportation repository, use the following file path:"
    ]
   },
   {
@@ -94,7 +94,7 @@
    "metadata": {},
    "outputs": [],
    "source": [
-    "git add /example/filepath/etc"
+    "git add /filepath/usvi-transportation/gis"
    ]
   },
   {
-- 
GitLab