-
Notifications
You must be signed in to change notification settings - Fork 40k
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
Add a doc on making PRs easier to review #5232
Conversation
your whole PR is pretty trivial, you should instead put your fixups into a new | ||
commit and re-push. Your reviewer can then look at that commit on its own - so | ||
much faster to review than starting over. | ||
|
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.
Agree with this, but I worry that we're going to end up with a git history that is a mess unless we squash these before merge. Github makes squashing much harder than just hitting the merge button, sadly. (Though it's probably possible to write a small script to do this and merge PRs from the command line).
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.
I'll add a note - we should squash these things at the end, if possible. But as long as GitHubs tools suck so badly, this is the only sane way
e2435d3
to
06aa0a4
Compare
LGTM This is awesome! I wonder if you should add a section on what to do if you've followed all of the guidelines but your PR is still not being reviewed in a timely fashion. The tips I would put there are
|
Good point. Section added. PTAL. On Tue, Mar 10, 2015 at 12:47 AM, David Oppenheimer <
|
Awesome doc Tim! |
Looks good except I wasn't sure about the "fork a new PR" thing. If you do this and then commit, will the comment history on the original PR be lost when you submit? |
This is a good doc. |
Yes, if you fork a PR you will lose history, but I think it is a viable
|
LGTM |
Seems enough consensus -- merging. |
Add a doc on making PRs easier to review
Too wordy? Open to ideas on making it more succinct. The idea was to have a handy doc we could point people at when they violate these rules.