Skip to content

Commit d19574c

Browse files
Regenerate command docs for v1.1.0
1 parent 67cfd85 commit d19574c

File tree

22 files changed

+102
-16
lines changed

22 files changed

+102
-16
lines changed

commands/cache/add/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ be added.
2525

2626
[<group>]
2727
: Method for grouping data within the cache which allows the same key to be used across groups.
28+
\---
29+
default: default
30+
\---
2831

2932
[<expiration>]
3033
: Define how long to keep the value, in seconds. `0` means as long as possible.

commands/cache/decr/index.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,16 @@ Errors if the value can't be decremented.
2020
: Cache key.
2121

2222
[<offset>]
23-
: The amount by which to decrement the item's value. Default is 1.
23+
: The amount by which to decrement the item's value.
24+
\---
25+
default: 1
26+
\---
2427

2528
[<group>]
2629
: Method for grouping data within the cache which allows the same key to be used across groups.
30+
\---
31+
default: default
32+
\---
2733

2834
### EXAMPLES
2935

commands/cache/delete/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Errors if the value can't be deleted.
2121

2222
[<group>]
2323
: Method for grouping data within the cache which allows the same key to be used across groups.
24+
\---
25+
default: default
26+
\---
2427

2528
### EXAMPLES
2629

commands/cache/get/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Errors if the value doesn't exist.
2121

2222
[<group>]
2323
: Method for grouping data within the cache which allows the same key to be used across groups.
24+
\---
25+
default: default
26+
___
2427

2528
### EXAMPLES
2629

commands/cache/incr/index.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,16 @@ Errors if the value can't be incremented.
2020
: Cache key.
2121

2222
[<offset>]
23-
: The amount by which to increment the item's value. Default is 1.
23+
: The amount by which to increment the item's value.
24+
\---
25+
default: 1
26+
\---
2427

2528
[<group>]
2629
: Method for grouping data within the cache which allows the same key to be used across groups.
30+
\---
31+
default: default
32+
\---
2733

2834
### EXAMPLES
2935

commands/cache/replace/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ Errors if the value can't be replaced.
2424

2525
[<group>]
2626
: Method for grouping data within the cache which allows the same key to be used across groups.
27+
\---
28+
default: default
29+
\---
2730

2831
[<expiration>]
2932
: Define how long to keep the value, in seconds. `0` means as long as possible.

commands/cache/set/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ Errors if the value can't be set.
2424

2525
[<group>]
2626
: Method for grouping data within the cache which allows the same key to be used across groups.
27+
\---
28+
default: default
29+
\---
2730

2831
[<expiration>]
2932
: Define how long to keep the value, in seconds. `0` means as long as possible.

commands/core/config/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ default:
6262
[\--skip-check]
6363
: If set, the database connection is not checked.
6464

65+
[\--force]
66+
: Overwrites existing files, if present.
67+
6568
### EXAMPLES
6669

6770
# Standard wp-config.php file

commands/core/update/index.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ display_global_parameters: true
1414

1515
Defaults to updating WordPress to the latest version.
1616

17+
If you see "Error: Another update is currently in progress.", you may
18+
need to run `wp option delete core_updater.lock` after verifying another
19+
update isn't actually running.
20+
1721
### OPTIONS
1822

1923
[<zip>]
@@ -23,7 +27,7 @@ Defaults to updating WordPress to the latest version.
2327
: Only perform updates for minor releases (e.g. update from WP 4.3 to 4.3.3 instead of 4.4.2).
2428

2529
[\--version=<version>]
26-
: Update to a specific version, instead of to the latest version.
30+
: Update to a specific version, instead of to the latest version. Alternatively accepts 'nightly'.
2731

2832
[\--force]
2933
: Update even when installed WP version is greater than the requested version.

commands/db/cli/index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,17 @@ display_global_parameters: true
1212

1313
<hr />
1414

15+
### OPTIONS
16+
17+
[\--database=&lt;database&gt;]
18+
: Use a specific database. Defaults to DB_NAME.
19+
20+
[\--default-character-set=&lt;character-set&gt;]
21+
: Use a specific character set. Defaults to DB_CHARSET when defined.
22+
23+
[\--&lt;field&gt;=&lt;value&gt;]
24+
: Extra arguments to pass to the MySQL executable.
25+
1526
### EXAMPLES
1627

1728
# Open MySQL console

0 commit comments

Comments
 (0)