Update GitHub instructions in 10_manage_python_project.ipynb#360
Open
yakutovicha wants to merge 2 commits intomainfrom
Open
Update GitHub instructions in 10_manage_python_project.ipynb#360yakutovicha wants to merge 2 commits intomainfrom
yakutovicha wants to merge 2 commits intomainfrom
Conversation
In this PR we ask users to establish passwordless connection to GitHub based on SSH key pair.
despadam
requested changes
Mar 26, 2026
| "1. [Create an access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token#creating-a-personal-access-token-classic) for your account that will be used instead of your password.\n", | ||
| " You should enable `workflow`, `write:packages`, `delete:packages`.\n", | ||
| " Make sure to store the token in some secure location.\n", | ||
| " The URL can be found by clicking on the `<Code>` dropdown and selecting the __SSH__ tab.\n", |
Contributor
There was a problem hiding this comment.
We can add just a simple sentence explaining what an SSH key is and why it is useful. Perhaps provide a link for more info
| "<details>\n", | ||
| "<summary>How to set up SSH keys (click to expand)</summary>\n", | ||
| "\n", | ||
| "1. Open the Terminal and generate an SSH key pair:\n", |
Contributor
There was a problem hiding this comment.
We can say that this can be done from the Jupyter terminal as well
| " ```\n", | ||
| " Hit `Enter` three times to accept the default values.\n", | ||
| "\n", | ||
| "2. In the File Browser, enter the `.ssh` folder and open the file named `id_rsa.pub`. Copy its content.\n", |
Contributor
There was a problem hiding this comment.
People might not be sure how to find this folder, some additional guidance would be useful.
For example, if one uses the terminal within JupyterLab:
- when the terminal opens you are in
C:\Users\username\path\to\python-tutorialon Windows - navigate to
C:\Users\username\ lswill show that the.sshfolder exists therecd .sshcat id_rsa.pub- copy
OR
Add a screenshot from the Windows file explorer?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fixes #306
In this PR, we ask users to establish a passwordless connection to GitHub based on an SSH key pair.