From 65006397f8a25d3c88e6c63bedd2487ac5172c55 Mon Sep 17 00:00:00 2001 From: woose Date: Fri, 7 Mar 2025 22:45:14 +0300 Subject: [PATCH] update module3.ipynb --- module3.ipynb | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/module3.ipynb b/module3.ipynb index 212b386..98d30de 100644 --- a/module3.ipynb +++ b/module3.ipynb @@ -533,7 +533,20 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Study guide: Git Remotes" + "# Study guide: Git Remotes\n", + "\n", + "You’ve learned about what a remote is, working with remotes, fetching new changes, and updating the local repository. Use this study guide as an easy reference of Git commands for working with remotes. This study guide gives a brief explanation of these useful commands along with a link to the Git documentation for each command. Keeping study guides like this one easily accessible can help you code more efficiently.\n", + "\n", + "| Command | Explanation & Links |\n", + "| --- | --- |\n", + "| git remote | [$ git remoteOpens in a new tab](https://git-scm.com/docs/git-remote) allows you to manage the set of repositories or “remotes” whose branches you track. |\n", + "| git remote -v | [$ git remote -vOpens in a new tab](https://git-scm.com/docs/git-remote#Documentation/git-remote.txt--v) is similar to $ git remote, but adding the -v shows more information such as the remote URL. |\n", + "| git remote show | [$ git remote show Opens in a new tab](https://git-scm.com/docs/git-remote#Documentation/git-remote.txt-emshowem) shows some information about a single remote repo. |\n", + "| git remote update | [$ git remote updateOpens in a new tab](https://git-scm.com/docs/git-remote#Documentation/git-remote.txt-emupdateem) fetches updates for remotes or remote groups. |\n", + "| git fetch | [$ git fetchOpens in a new tab](https://git-scm.com/docs/git-fetch) can download objects and refs from a single repo, a single URL, or from several repositories at once. |\n", + "| git branch -r | [$ git branch -rOpens in a new tab](https://git-scm.com/docs/git-branch#Documentation/git-branch.txt--r) lists remote branches and can be combined with other branch arguments to manage remote branches. |\n", + "\n", + "Keep this table handy while you are getting comfortable using Git remotes. Now, it’s time to put your newfound knowledge of Git remotes to use!" ] }, {