-
Notifications
You must be signed in to change notification settings - Fork 74
Websites: Clarify deploy and tag stage #119
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,8 +120,14 @@ For other sites: | |
|
||
To create a tag, use `npm version [major | minor | patch]`. | ||
|
||
Afterwards, make sure to push both version change commit and the tag: | ||
`git push --tags origin master` | ||
Afterwards, make sure to push both version change commit and the tag to the main jQuery repo. | ||
|
||
<div class="warning">You'll want to check your remote setup using <code>git remote -v</code> and check which remote is used for the main jQuery repo.</div> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perhaps: The example below uses There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And then drop the condition below. |
||
|
||
If `upstream` is the remote you use for that, type: | ||
`git push --tags upstream master` | ||
|
||
If you use `origin` for the main jQuery repo, replace `upstream` with `origin` in the command above. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I personally don't like the words "main jQuery repo." There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I probably should've read the whole thing before I started commenting. Perhaps take my suggested wording and move it down here, replacing "below" and "above" and adding this sentence. That would give you:
|
||
|
||
--- | ||
|
||
|
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 don't think this change is necessary, especially with the warning included.