You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In silent mode, log messages are suppressed and error messages are sanitized.
234
234
235
235
The `--no-silent` option enables extended console logging.
236
236
Keep this untouched if the repository URL or other information passed to git commands is sensitive!
237
237
238
-
> WARNING: This option should be kept as it is if the repository URL or other information passed to Git commands is sensitive and should not be logged (== you have a public build server and you are using the `GH_TOKEN` feature).
238
+
> ⚠️ WARNING: This option should be kept as it is if the repository URL or other information passed to Git commands is sensitive and should not be logged (== you have a public build server and you are using the `GH_TOKEN` feature).
239
239
> By default the silent mode is enabled to avoid sensitive data exposure.
240
240
241
241
242
242
#### --no-dotfiles <aname="no-dotfiles"></a>
243
243
*__optional__
244
244
* Default: dotfiles `true` (boolean)
245
245
* Example:
246
-
*`ng deploy`-- Dotfiles are included by default.
247
-
*`ng deploy --no-dotfiles`-- Dotfiles are ignored.
246
+
*`ng deploy`– Dotfiles are included by default.
247
+
*`ng deploy --no-dotfiles`– Dotfiles are ignored.
248
248
249
-
The command includes dotfiles by default (e.g `.htaccess` will be committed)
249
+
The command includes dotfiles by default (e.g.`.htaccess` will be committed).
250
250
With `--no-dotfiles` files starting with `.` are ignored.
251
251
252
252
**Hint:**
253
253
This is super useful if you want to publish a `.nojekyll` file.
254
254
Create such a file in the root of your pages repo to bypass the Jekyll static site generator on GitHub Pages.
255
-
Static content is still delivered -- even without Jekyll.
255
+
Static content is still delivered – even without Jekyll.
256
256
This should only be necessary if your site uses files or directories that start with **_underscores** since Jekyll considers these to be special resources and does not copy them to the final site.
257
257
→ Or just don't use underscores!
258
258
259
259
260
260
#### --cname <aname="cname"></a>
261
261
*__optional__
262
-
* Default: `undefined` (string) -- No CNAME file is generated
262
+
* Default: `undefined` (string) – No CNAME file is generated
263
263
* Example:
264
264
*`ng deploy --cname=example.com`
265
265
@@ -271,8 +271,8 @@ A CNAME file will be created enabling you to use a custom domain.
271
271
*__optional__
272
272
* Default: `false` (boolean)
273
273
* Example:
274
-
*`ng deploy`-- Normal behavior: Changes are applied.
275
-
*`ng deploy --dry-run`-- No changes are applied at all.
274
+
*`ng deploy`– Normal behavior: Changes are applied.
275
+
*`ng deploy --dry-run`– No changes are applied at all.
276
276
277
277
Run through without making any changes.
278
278
This can be very useful because it outputs what would happen without doing anything.
0 commit comments