From 1d7da3362a6c2240f739b6bec9ed545e479e08af Mon Sep 17 00:00:00 2001 From: woose Date: Sat, 8 Mar 2025 12:05:32 +0300 Subject: [PATCH] update module4.ipynb --- module4.ipynb | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 62 insertions(+), 1 deletion(-) diff --git a/module4.ipynb b/module4.ipynb index 54fa5fb..139d577 100644 --- a/module4.ipynb +++ b/module4.ipynb @@ -152,7 +152,68 @@ "metadata": {}, "source": [ "# Updating an Existing Pull Request\n", - "\n" + "\n", + "This reading contains the code used in the instructional videos from [**Updating an Existing Pull Request**Opens in a new tab](https://www.coursera.org/learn/introduction-git-github/lecture/aRZ95/updating-an-existing-pull-request)\n", + "\n", + "## Introduction\n", + "\n", + "This follow-along reading is organized to match the content in the video that follows. It contains the same code shown in the next video. These code blocks will provide you with the opportunity to see how the code is written and can be used as a reference as you work through the course. \n", + "\n", + "You can follow along in the reading as the instructor discusses the code or review the code after watching the video.\n", + "\n", + "```bash\n", + "atom README.md\n", + "\n", + "Rearrange\n", + "\n", + "\\=========\n", + "\n", + "This module is used for rearranging names. \n", + "\n", + "Turns \"LastName,FirstName\" into \"Firstname LastName\"\n", + "\n", + "# Example\n", + "\n", + "Calling \\`rearrange\\_name(\"Turing, Alan\")\\` will return \\`\"Alan Turing\"\\`\n", + "```\n", + "\n", + "```bash\n", + "git commit \\-a \\-m 'Add more information to the README'\n", + "```\n", + "\n", + "**Code output:** \n", + "\n", + "\\[add-readme 01231b0\\] Add more information to the README\n", + "\n", + " 1 file changed, 5 insertions(+)\n", + "\n", + "```bash\n", + "git push\n", + "```\n", + "\n", + "**Code output:** \n", + "\n", + "Username for 'https://github.com': redquinoa\n", + "\n", + "Password for 'https://redquinoa@github.com': redquinoa\n", + "\n", + "Enumerating objects: 5, done.\n", + "\n", + "Counting objects: 100% (5/5), done.\n", + "\n", + "Delta compression using up to 4 threads\n", + "\n", + "Compressing objects: 100% (3/3), done.\n", + "\n", + "Writing objects: 100% (3/3), 407 bytes | 407.00 KiB/s, done.\n", + "\n", + "Total 3 (delta 1), reused 0 (delta 0)\n", + "\n", + "remote: Resolving deltas: 100% (1/1), completed with 1 local object.\n", + "\n", + "To https://github.com/redquinoa/rearrange.git\n", + "\n", + "   736d754..01231b0  add-readme -> add-readme" ] }, {