From fa572d909b25a95a8261163d639f1684f4450fe9 Mon Sep 17 00:00:00 2001 From: woose Date: Fri, 7 Mar 2025 14:44:04 +0300 Subject: [PATCH] update module3.ipynb --- module3.ipynb | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 73 insertions(+), 1 deletion(-) diff --git a/module3.ipynb b/module3.ipynb index 400b597..fd444e7 100644 --- a/module3.ipynb +++ b/module3.ipynb @@ -162,7 +162,79 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Working with Remotes" + "# Working with Remotes\n", + "\n", + "This reading contains the code used in the instructional videos from [**Working with remotes**Opens in a new tab](https://www.coursera.org/learn/introduction-git-github/lecture/udUgl/working-with-remotes)\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", + "cd health\\-checks/\n", + "\n", + "git remote \\-v\n", + "```\n", + "\n", + "**Code output:** \n", + "\n", + "origin  https://github.com/redquinoa/health-checks.git (fetch)\n", + "\n", + "origin  https://github.com/redquinoa/health-checks.git (push)\n", + "\n", + "```bash\n", + "git remote show origin\n", + "```\n", + "\n", + "**Code output:** \n", + "\n", + "Username for 'https://github.com': redquinoa\n", + "\n", + "Password for 'https://redquinoa@github.com': \n", + "\n", + "\\* remote origin\n", + "\n", + "  Fetch URL: https://github.com/redquinoa/health-checks.git\n", + "\n", + "  Push  URL: https://github.com/redquinoa/health-checks.git\n", + "\n", + "  HEAD branch: master\n", + "\n", + "  Remote branch:\n", + "\n", + "    master tracked\n", + "\n", + "  Local branch configured for 'git pull':\n", + "\n", + "    master merges with remote master\n", + "\n", + "  Local ref configured for 'git push':\n", + "\n", + "    master pushes to master (up to date)\n", + "\n", + "```bash\n", + "git branch \\-r\n", + "```\n", + "\n", + "**Code output:**\n", + "\n", + "  origin/HEAD -> origin/master\n", + "\n", + "  origin/master\n", + "\n", + "```bash\n", + "git status\n", + "```\n", + "\n", + "**Code output:** \n", + "\n", + "On branch master\n", + "\n", + "Your branch is up to date with 'origin/master'.\n", + "\n", + "nothing to commit, working tree clean" ] }, {