-
Notifications
You must be signed in to change notification settings - Fork 74
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
Deploying command is kind of confusing #116
Comments
It looks to me like the parts using "upstream" are written for contributors, the one using "origin" for maintainers. We should keep those separate, so moving that "deploying" section elsewhere would be better than renaming the remote. |
@jzaefferer I agree with that. I'd be happy to maybe have a warning note then, reminding people that they should check whether they should push to origin or upstream (many maintainers started as contributors and would have the remotes inline with the contributor's recommendations. What do you think? |
That makes sense. |
This seems confusing to me. Why not settle on |
@mzgol My understanding is that contributors have been recommended to use upstream for the upstream/main repo and origin for their fork, and that is everywhere in the contribute site. I don't think we're going to change that. However, when used to follow the instructions on the contribute site, it can be confusing to suddenly be told to use |
Choice of specific names is personal taste so if we have For me it'd be easiest to understand if the only difference between Git setup of contributors & maintainers would be that the latter ones can push to |
That's exactly what @agcolom originally suggested. |
Right, sorry for the confusion. +1 to @agcolom then. |
👍 to changing together with adding a note to make sure people double check. |
@jzaefferer @mzgol @scottgonzalez Please check the PR and let me know if the wording looks good to you or if anything needs changing. Here's a screenshot also: |
At the bottom of this section we say to use
git push --tags origin master
. However, everywhere else on the contribute site, we say to fork the repo, clone the fork which will be origin and add the main jquery repo as upstream. I'm proposing to replacegit push --tags origin master
togit push --tags upstream master
. Any comments or objections?The text was updated successfully, but these errors were encountered: