From 64b25f64ab85ee1590e06e11500e8c9022d72d46 Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Sun, 16 Apr 2017 20:11:06 +0200 Subject: [PATCH] doc: correct git fix whitespace command Use apply.whitespace=fix rather than core.whitespace=fix Ref: https://github.com/nodejs/node/issues/11412 PR-URL: https://github.com/nodejs/node/pull/12445 Reviewed-By: Gibson Fahnestock Reviewed-By: Refael Ackermann Reviewed-By: James M Snell --- doc/onboarding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/onboarding.md b/doc/onboarding.md index 7727335faf7ff9..e6bef3f631a2ac 100644 --- a/doc/onboarding.md +++ b/doc/onboarding.md @@ -32,7 +32,7 @@ onboarding session. ## Local setup * git: - * make sure you have whitespace=fix: `git config --global --add core.whitespace fix` + * make sure you have whitespace=fix: `git config --global --add apply.whitespace fix` * usually PR from your own github fork * [See "Updating Node.js from Upstream"](./onboarding-extras.md#updating-nodejs-from-upstream) * make new branches for all commits you make!