From 7aa240a9cb25d28d3cf58b282d53e618a00d9037 Mon Sep 17 00:00:00 2001 From: Dan Dascalescu Date: Fri, 24 Jan 2025 08:08:16 +0800 Subject: [PATCH] Fix "do not wish to not upload" in README.md (#1023) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 180e6f1d..52b0f6f9 100644 --- a/README.md +++ b/README.md @@ -462,7 +462,7 @@ If `newValue` is omitted it returns the current setting value. ### Ignore File (`.claspignore`) -Like `.gitignore`, `.claspignore` allows you to ignore files that you do not wish to not upload on `clasp push`. Steps: +Like `.gitignore`, `.claspignore` allows you to ignore files that you do not wish to upload on `clasp push`. Steps: 1. Create a file called `.claspignore` in your project's root directory. 1. Add patterns to be excluded from `clasp push`. _Note_: The `.claspignore` patterns are applied by [multimatch](https://github.com/sindresorhus/multimatch), which is different from `.gitignore`, especially for directories. To ignore a directory, use syntax like `**/node_modules/**`.