From 130a43964ab66f54c52ac9c3a5012b12deab020d Mon Sep 17 00:00:00 2001 From: Patrick Date: Mon, 19 Feb 2024 15:00:30 +0100 Subject: [PATCH 1/3] My name is Patrick and I modified this document --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a87181..bc855a9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Practice with git and GitHub -\[Your Step 3 Edit Here\] +I'm Patrick and I edited this file!!!! This is a very simple repository for practicing with git and GitHub. git is a utility for *version control*. When a body of code is tracked with git, it is easy to see how the software has evolved over time, to roll back changes when needed, and to incorporate modifications by multiple collaborators. In this activity, we're going to focus on core git workflows for single-person projects. We may do a follow-up activity later in the quarter on workflows for collaborative projects. From 63d1b257c5988ff6ccaf6c44e03c6631182ad736 Mon Sep 17 00:00:00 2001 From: Patrick Date: Mon, 19 Feb 2024 15:22:02 +0100 Subject: [PATCH 2/3] I added a Jupyter file --- practice-folder/jupter.ipynb | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 practice-folder/jupter.ipynb diff --git a/practice-folder/jupter.ipynb b/practice-folder/jupter.ipynb new file mode 100644 index 0000000..f923fb6 --- /dev/null +++ b/practice-folder/jupter.ipynb @@ -0,0 +1,32 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from matplotlib import pyplot as plt\n", + "import numpy as np\n", + "\n", + "x = np.linspace(0, 2*np.pi, 1001)\n", + "y = np.sin(x)\n", + "f = plt.plot(x,y)" + ] + } + ], + "metadata": { + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 74cbb114934b9e7dbb870cefe76573216d0a2eaf Mon Sep 17 00:00:00 2001 From: patrick-231 <137486318+patrick-231@users.noreply.github.com> Date: Mon, 19 Feb 2024 15:27:13 +0100 Subject: [PATCH 3/3] I updated the Readme file on Github --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bc855a9..d9a2497 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Practice with git and GitHub I'm Patrick and I edited this file!!!! +I'm Patrick and I edited this file online! This is a very simple repository for practicing with git and GitHub. git is a utility for *version control*. When a body of code is tracked with git, it is easy to see how the software has evolved over time, to roll back changes when needed, and to incorporate modifications by multiple collaborators. In this activity, we're going to focus on core git workflows for single-person projects. We may do a follow-up activity later in the quarter on workflows for collaborative projects.