Skip to content
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

adding pullrequest guide for #103 #140

Merged
merged 19 commits into from
Apr 12, 2017

Conversation

louisrawlins
Copy link
Contributor

@louisrawlins louisrawlins commented Mar 5, 2017

"The pullrequest page should include a step-by-step list with the required git commands required to create a pull request."

Closes #103

Copy link
Collaborator

@willingc willingc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @louisrawlins for the PR. I've made some clarifications and suggestions for you. ☀️

pullrequest.rst Outdated

git fetch upstream

Use rebase -i to verify what you commit and squish small commits::
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/s/squish/squash

pullrequest.rst Outdated
`Clear communication`_ is key to contributing to any project, especially an
`Open Source`_ project like Python.

Here is a quick overview of you can contribute to CPython on Github:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Substitute GitHub for all instances of Github 👍

pullrequest.rst Outdated

Here is a quick overview of you can contribute to CPython on Github:

1. `Create an Issue`_ that describes your change, if it doesn't exist and you're explicitly working on something
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if...something

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If an issue doesn't already exist, `create one <https://bugs.python.org/>`_?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clearer. Thanks @ezio-melotti and @willingc

pullrequest.rst Outdated

5. `Run tests`_ after you have built Python

6. `Add an "upstream" Remote in Git`_ on your system
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: Add an "upstream" Git remote

pullrequest.rst Outdated

10. `Push commits`_ to your Github repo

11. `Create Pull Request`_ in Github to merge a branch from your Fork
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to merge ... Fork -> to ask for your changes to be merged into CPython.

pullrequest.rst Outdated
Quick Guide Step-by-step
''''''''''''''''''''''''

Set up your system::
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will only work if the user has an ssh key setup for GitHub. Otherwise, the user will need to use https.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm re-reading this part. How often to contributors not have an SSH / RSA key? To me, that seems standard.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@louisrawlins It's worth mentioning the SSH key since my experience at sprints and hackathons is that many new contributors do not have an SSH key configured for GitHub.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aha. Gotcha. Hadn't considered hackathons and that environment.

pullrequest.rst Outdated

Replace **YOUR_GITHUB_ID** with your Github account name above, then add upstream::

git remote add upstream git://github.com/python/cpython.git
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should probably be the https url since a contributor would need core dev privileges, as well as an ssh key, to use the git url.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed, but I would also add a short note to explain the difference, otherwise users might be wondering why two different types of urls are used.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah. I'm struggling to figure out a way to say that concisely. It's like, you're cloning SSH, then fetching HTTPS -- I suppose?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#130 has a discussion about it that clarifies the differences.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not so much curious about the difference, as I'm trying to figure out how to tell potentially contributors when they might need to worry about the difference.

For me, I treat HTTPS as something I use when I just need to download something as a ZIP, I'm not at my machine, etc. It's not something I'd be using if I'm branching something on my repo and preparing for a Pull Request. For that, I'd use SSH. But perhaps I'm missing a nuance here.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about "Add an “upstream” Git remote on your system (for SSH, or you can use HTTPS)"?

Copy link
Member

@ezio-melotti ezio-melotti left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the patch! I left a few comments.

pullrequest.rst Outdated
.. _Create a Branch in Git: https://cpython-devguide.readthedocs.io/committing.html#active-branches
.. _resolve conflicts in Git: https://cpython-devguide.readthedocs.io/committing.html#squashing-commits
.. _Run tests: https://cpython-devguide.readthedocs.io/runtests.html#running-writing-tests
.. _Push commits: https://cpython-devguide.readthedocs.io/committing.html#pushing-changes
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For all the internal links you should be able to use :ref:`...`.
For short urls (like the one to bpo, or opensource.guide), sometimes it's more readable to add them inline, using `text displayed <url>`_.
For longer urls or urls that are repeated, it's ok using a label like you did.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you elaborate on ""For all the internal links you should be able to use :ref:...."" ? I scanned the rST documentation and couldn't quite understand when what got used where

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See for example the quick start in index.rst -- it links to other sections using this syntax.
See also https://cpython-devguide.readthedocs.io/documenting.html#cross-linking-markup for more info.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure I follow. This appears to be internal linking within a page whereas I'm linking within the same site, but to different pages. Perhaps I don't understand the full scope of what :ref: is doing for devguide.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay. I think I've got it... but where can I find an index of each of these unique IDs across devguide? Is there one, or can Sphinx create it for me? I want to avoid name collision.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Plus, I'm finding it difficult to do "ACTIVE VERB" -- GET, DO, RUN, versus the current titles which are like Getting, Doing, Running. They work fine as headers, but are tough for step-by-step instructions that say, "Do step 1."; "Run step 2" and so on

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for continued complaints, as this might be a known issue. I've updated the devguide with internal :ref: links, but what it's gained in engineering clarity I think has degraded the readability of steps and hyperlinks -- I'm open to thoughts on that.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that when the auto-generated text for a link target doesn't make sense in the context of the particular link, you can instead use:

:ref:`link text <link-target>`

The description at https://cpython-devguide.readthedocs.io/documenting.html#cross-linking-markup mentions using that syntax for linking to labels that don't refer to section headings, but doesn't point out that it can also be used to link to section headings with text other than the section heading name.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As far as name collisions are concerned, I don't know of an easy way to get a complete listing, but Sphinx itself will complain about any duplicates (and tell you which files contain the conflicting labels) as part of the build process.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you, @ncoghlan That is super-helpful.

pullrequest.rst Outdated

Here is a quick overview of you can contribute to CPython on Github:

1. `Create an Issue`_ that describes your change, if it doesn't exist and you're explicitly working on something
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If an issue doesn't already exist, `create one <https://bugs.python.org/>`_?

pullrequest.rst Outdated

8. Commit changes and `resolve conflicts in Git`_

9. `Run tests`_ again
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should be between 7 and 8: after creating the branch, the user should fix the issue and run the tests to make sure the fix works. If it works, the changes can be committed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. I meant to do just that

pullrequest.rst Outdated

11. `Create Pull Request`_ in Github to merge a branch from your Fork

12. Celebrate! You just contributed to Python. :)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps before celebrating the user should address the review comments and update the PR until it gets merged.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're telling me! Haha

pullrequest.rst Outdated

Replace **YOUR_GITHUB_ID** with your Github account name above, then add upstream::

git remote add upstream git://github.com/python/cpython.git
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed, but I would also add a short note to explain the difference, otherwise users might be wondering why two different types of urls are used.

pullrequest.rst Outdated

git checkout -b MY_NEW_FEATURE upstream/master

As you work, please create a separate commit for each bug fix or feature change::
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This might be a bit misleading, since each PR should either fix a bug or add a new feature.

pullrequest.rst Outdated

Use rebase -i to verify what you commit and squish small commits::

git rebase -i upstream/master
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this step necessary?
IIUC as long as there are not conflicts, both the rebase and the squash are not necessary, since the committer will do it.
If squashing prevents reviewers to see the individual commits, it should also be avoided by contributors.

Copy link
Contributor Author

@louisrawlins louisrawlins Mar 5, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you think? I'm not sure. This came from a workflow where many devs were contributing to a single remote branch, then the dev lead would merge that branch to production periodically. Since I'm not contributing to the CPython codebase day-to-day, it's hard for me to judge

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The squash seems unnecessary, especially if it "hides" the intermediate commits.
The rebase shouldn't hurt, but I think it would be necessary only in case of conflicts, otherwise it's just an extra step that might be avoided.
Someone more familiar with Git than me could comment.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

git rebase was always useful if I was committing to a file that I knew was likely to be touched by other devs. It's a relatively explicit "walkthrough" process that is built into Git. Pt another way, if you're familiar enough to programming to contribute to CPython, it's likely you can figure out rebase. I can go either way on squashing commits -- it makes things clear in the case content and cosmetic changes, but for logic I don't generally find it helpful

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tend to lean toward @ezio-melotti's approach to not rebase since the core dev will take care of it. @louisrawlins, In my experience contributors vary widely in their understanding of rebase, so let's keep things easiest and not recommend. Thanks.

pullrequest.rst Outdated

Work on new features or fixes::

git checkout -b MY_NEW_FEATURE upstream/master
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would use something more generic, such as MY_BRANCH_NAME, or issue-NNNNN

pullrequest.rst Outdated

When you're ready, make a Pull Request on Github and refer to your branch named **MY_NEW_FEATURE**.

*Though submitting a Pull Request on Github is the preferred method of contribution, you can alternatively upload a patch to bugs.python.org*
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line (and perhaps the previous one) is too long. Add http:// in front of b.p.o so it becomes a clickable link.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Having emphasis * and the link on the same line caused issues. I've made it a "Note:"

pullrequest.rst Outdated

git push origin MY_NEW_FEATURE

When you're ready, make a Pull Request on Github and refer to your branch named **MY_NEW_FEATURE**.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The contributors should be ready as soon as they pushed their branch :)
I'm also not sure what you mean with "refer to your branch named ..." -- isn't it enough to click on the "create PR" button?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As far as I know, there is that extra step where I have to go to [CPython on GitHub] (https://github.com/python/cpython), click "New pull request", find and click on the link "compare across forks", select my repository, THEN select my branch -- I find the entire process burdensome (because I'm doing everything else on the CLI) and a bit confusing because it's its own process -- how much detail should we have in the docs?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What I did so far was:

  1. push the new branch to my fork
  2. go to my fork on github
  3. a button saying something like "you pushed branch X [create PR]" appears
  4. click on the button

IOW, I create the PR from my fork, not from the upstream CPython.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you go to your fork, the GitHub UI should pop up the option to submit a PR as @ezio-melotti recommends.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay. Clearer. It's the "New pull request" button next to the "branch selection" menu in my repo, correct? Glad I asked! (To be clear, I wasn't creating the PR from the upstream, but rather going TO CPython because I had a Pull Request FOR CPython -- it didn't make sense to fiddle with a PR from my own repo.)

@louisrawlins
Copy link
Contributor Author

Hi @ezio-melotti . Thanks for all the feedback. Take a look and let me know if there's anything else that needs updating. @willingc , thank you too for your help.

Copy link
Collaborator

@willingc willingc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add the SSH key reference and this looks good to me.

@louisrawlins
Copy link
Contributor Author

Update all .git references to _use HTTPS: https://help.github.com/articles/which-remote-url-should-i-use/

Copy link
Collaborator

@willingc willingc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @louisrawlins. This looks ready to merge. ☀️

pullrequest.rst Outdated

6. Set your Git :ref:`remote-configuration` to add an "upstream" remote (using SSH, or you can `use HTTPS`_)

7. Create :ref:`committing-active-branches` in Git where you can work on changes
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the reference to committing-active-branches is incorrect here.
Currently it links to the section that explains how to list the branches (git branch command.)
It's better to refer to line 153 below (about git checkout -b BRANCH_NAME) which is the key step.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @Mariatta . I agree. That feels clearer. I was struggling to move back-and-forth between comitting.rst -- some of the naming and explanation didn't fit.

@louisrawlins
Copy link
Contributor Author

Thank for your patience. Let me know, @willingc, @Mariatta and @ezio-melotti if this hits the mark. @DimitrisJim -- I'm hoping everything is resolved for the CLA. Just holler if something should be added to the quick guide.

pullrequest.rst Outdated
@@ -105,23 +105,23 @@ Here is a quick overview of you can contribute to CPython on GitHub:

1. If an Issue doesn't exist, `create an Issue`_ that describes your change

2. Prepare your system by :ref:`setup`
2. :ref:`Get started <setup>`_ and set up your system
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cross references don't use _ prefix, so you should remove these; this is why travis failed on you. In general, run make html on your changes to catch all warnings :-). Apart from that, LGTM :-)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Erp! Thank you! I thought I might have messed up some of the references, but got caught up in rST particulars. Thanks -- will check that more-closely next time. For better of worse, Sphinx didn't throw any errors for me locally.

Copy link
Contributor Author

@louisrawlins louisrawlins Mar 24, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah yeah. 😅

The reason I didn't see any errors, is that I failed to check in & push my final change. Thanks again!

@ezio-melotti ezio-melotti removed their assignment Mar 24, 2017
@willingc
Copy link
Collaborator

@Mariatta @ncoghlan Do you mind if we merge this as it is and iterate later if needed? @louisrawlins did a great job with this PR and addressing feedback and I don't want it to languish ☀️

Thanks for your patience @louisrawlins. 🍪

@Mariatta Mariatta merged commit f899455 into python:master Apr 12, 2017
@Mariatta
Copy link
Member

Thanks @louisrawlins and congrats for your first contribution to the Dev Guide! 🎉

@willingc
Copy link
Collaborator

Congrats @louisrawlins 🍰

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants