-
-
Notifications
You must be signed in to change notification settings - Fork 60
Update readme with pip install instructions #130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Consistently use double backticks.
cherry_picker/readme.rst
Outdated
|
||
Specify an `upstream` remote in the cloned CPython repository:: | ||
Ensure that an ``upstream`` remote is specified in the cloned CPython repository:: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps split this into two steps:
Verify that an ``upstream`` remote is set to the CPython repository::
$ git remote -v
...
upstream https://github.com/python/cpython (fetch)
upstream https://github.com/python/cpython (push)
If needed, create the ``upstream`` remote::
$ git remote add upstream https://github.com/python/cpython.git
cherry_picker/readme.rst
Outdated
|
||
$ git remote add upstream https://github.com/python/cpython.git | ||
|
||
|
||
The cherry picking script assumes that if an `upstream` remote is defined, then | ||
The cherry picking script assumes that if an ``upstream`` remote is defined, then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps move these 2 sentences before the "verifying upstream
remote".
Thanks @willingc I made the suggested changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @Mariatta
Closes #114