| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
The commit message should have the following format. |
Sorry, something went wrong.
Use asssert.strictEqual to enforce coersion.
Sorry, something went wrong.
|
Why did the build failed? Didn't saw any useful information in the link. |
Sorry, something went wrong.
|
@YingjieFan @Trott said on one of my PRs that some of the code-and-learn CI jobs got killed by accident. Probably just needs a reviewer to restart them. |
Sorry, something went wrong.
|
On the CI thing: This one was just a single failure on one of the (many) Windows builds. It's unrelated. No need to be concerned about it. |
Sorry, something went wrong.
|
Thanks guys. How and when can we restart it ? |
Sorry, something went wrong.
No need. The host that failed to build is one that doesn't run the test you changed anyway. CI results for this change are 👌 |
Sorry, something went wrong.
|
@Trott Sorry I'm new to Git. Wonder how do I know if a change is in the 'trunk' or 'master' successfully? What confuse me is it got approved but test failed. Does that mean it will be rejected or merged? |
Sorry, something went wrong.
|
@YingjieFan ... the changes here look good. The test failure here is nothing to worry about. One of the committers will merge the commit at some point in the next day or so. There should not be anything more that you need to do on this one! The one thing I did notice about your commit is that you put your commit into your own fork's master branch. Doing so can be a bit problematic for you in the future should you want to continue contributing to Node.js core. It is better to create a local branch off of master, make your changes within that branch, and open PRs from there. There's nothing you need to do for this particular PR but just for future reference. The way to do that if you're using the git command line is: // make sure you're in master to start $ git checkout master $ git branch my-dev-branch $ git checkout my-dev-branch // make your changes and commit $ git push --set-upstream origin/my-dev-branch |
Sorry, something went wrong.
Use asssert.strictEqual to disallow coersion. PR-URL: nodejs#10071 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
|
Landed in 5324a57. |
Sorry, something went wrong.
|
I've been working with SVN all the time. It's really cool to learn some git and I really liked it. Thanks so much for all the help guys! @santigimeno @brad-decker @addaleax @Trott @jasnell |
Sorry, something went wrong.
|
@jasnell I've been trying to understand the real purpose between fork's master vs other branch. Assume I create a branch based on master, the questions are:
Appreciate it if you can answer those questions for me. |
Sorry, something went wrong.
Use asssert.strictEqual to disallow coersion. PR-URL: #10071 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
That won’t work well once you have more than one pending pull request. For two simultaneous PRs, you’d definitely need two different branches.
git remote add upstream git@github.com:nodejs/node.git # only do this once
git rebase upstream/master # this will keep your current branch up to date
It’s technically up to you, but for new PRs, you need to rebase old branches against upstream/master. I think basically everyone opens new branches for any new work.
If you don’t use your fork’s master for PRs (which, as mentioned, you should usually not), you can do with your own master pretty much whatever you want. |
Sorry, something went wrong.
Use asssert.strictEqual to disallow coersion. PR-URL: nodejs#10071 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Use asssert.strictEqual to disallow coersion. PR-URL: nodejs#10071 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Use asssert.strictEqual to disallow coersion. PR-URL: #10071 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Use asssert.strictEqual to disallow coersion. PR-URL: #10071 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Use asssert.strictEqual to disallow coersion. PR-URL: #10071 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Use asssert.strictEqual to disallow coersion. PR-URL: #10071 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Use asssert.strictEqual to disallow coersion. PR-URL: #10071 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
| Back | FazBrowse Home | New Git URL |
Checklist
Affected core subsystem(s)
Description of change