diff --git a/gitlab-get_started.ipynb b/gitlab-get_started.ipynb index 04cf39c213d7e8ef5fc4b325e0923802da456dca..fdd96f03df4bd557aa984142d6a408de0f736fe3 100644 --- a/gitlab-get_started.ipynb +++ b/gitlab-get_started.ipynb @@ -63,7 +63,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "<h4>Step 1</h4> Choose a location for your local repository. Replace /Users/filepath/etc with your desired filepath for your local repository in the cell below." + "<h4>Step 1</h4> Choose a location for your local repository. Replace /Users/filepath/etc with your desired filepath for your local repository in the cell below. For example, the filepath of your Desktop could be a good choice." ] }, { @@ -80,7 +80,7 @@ "metadata": {}, "source": [ "<h4>Step 2</h4>\n", - "Clone the remote repository to the new local repository. (syntax: git clone https//repositoryurlcom/repo.git) The repository URL can be found by going to our GitLab repository, selecting clone, and copying what shows up under https.\n", + "Clone the remote repository to the new local repository. (syntax: git clone https//repositoryurlcom/repo.git) The repository URL can be found by going to a GitLab repository, selecting clone, and copying what shows up under https. In the below example we use the url of the USVI Transportation repository.\n", "\n", "" ] @@ -91,7 +91,23 @@ "metadata": {}, "outputs": [], "source": [ - "git clone https://gitlab.nps.edu/CID/USVI/example.git" + "git clone https://gitlab.nps.edu/CID/USVI/usvi-transportation.git" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can now cd to your newly created git repository on your desktop. Note that in the future you will always need to cd to your git repository before using git commands." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "cd /Users/filepath/etc/usvi-transportation" ] }, {