Skip to content

Commit 266bba4

Browse files
committed
Update tags
1 parent c42c1d4 commit 266bba4

1,649 files changed

Lines changed: 9460 additions & 2260 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

assets/commands/PKGBUILD.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# TAGLINE
2+
3+
Arch Linux package build script format
4+
15
# TLDR
26

37
**Build package**

assets/commands/index.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4314,6 +4314,7 @@ ng-completion.md
43144314
ng-extract-i18n.md
43154315
ng-generate.md
43164316
ng-lint.md
4317+
ng-new.md
43174318
ng-run.md
43184319
ng-serve.md
43194320
ng-update.md
@@ -4411,6 +4412,7 @@ nologin.md
44114412
nomad.md
44124413
nop.md
44134414
nordvpn.md
4415+
noseyparker.md
44144416
notable.md
44154417
notes.md
44164418
noti.md
@@ -5476,6 +5478,7 @@ prlimit.md
54765478
pro.md
54775479
proc.md
54785480
processing.md
5481+
processing_summary.txt
54795482
procmail.md
54805483
procs.md
54815484
proctl.md
@@ -6019,6 +6022,7 @@ ruff-check.md
60196022
ruff-format.md
60206023
ruff.md
60216024
ruget.md
6025+
run-help.md
60226026
run-mailcap.md
60236027
run0.md
60246028
run_init.md

assets/commands/pio-system.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# TAGLINE
2+
3+
Manage PlatformIO system information and maintenance
4+
15
# TLDR
26

37
**Show system information**

assets/commands/pio-team.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# TAGLINE
2+
3+
Manage PlatformIO organization teams and members
4+
15
# TLDR
26

37
**Create team**

assets/commands/pio-test.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# TAGLINE
2+
3+
Run unit tests for PlatformIO projects
4+
15
# TLDR
26

37
**Run unit tests**

assets/commands/pio-update.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# TAGLINE
2+
3+
Update PlatformIO packages and libraries
4+
15
# TLDR
26

37
**Update all packages**

assets/commands/pio-upgrade.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# TAGLINE
2+
3+
Upgrade PlatformIO Core to latest version
4+
15
# TLDR
26

37
**Upgrade PlatformIO Core**

assets/commands/pip-cache.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# TAGLINE
2+
3+
Inspect and manage pip's wheel cache
4+
15
# TLDR
26

37
**Show cache directory**

assets/commands/pip-check.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# TAGLINE
2+
3+
Verify installed package dependency compatibility
4+
15
# TLDR
26

37
**Check for broken dependencies**

assets/commands/pip-config.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# TAGLINE
2+
3+
Manage pip configuration files and settings
4+
15
# TLDR
26

37
**List configuration**
@@ -55,7 +59,25 @@
5559
5660
# DESCRIPTION
5761

58-
**pip config** manages pip's configuration files. Configure index URLs, trusted hosts, and other pip settings. Settings can be per-user, site-wide, or global.
62+
**pip config** manages pip's configuration files at different scopes. It provides a command-line interface for reading, writing, and editing pip settings without manually locating and editing INI-format configuration files.
63+
64+
Configuration is organized into three levels: global (system-wide), user (per-account), and site (per-virtualenv). Settings cascade so that more specific scopes override broader ones. Common settings include custom package index URLs, trusted hosts for private registries, and default installation options.
65+
66+
Use **pip config list** to see all active settings and their sources, or **pip config debug** to display the full search path and which files exist. The **edit** subcommand opens the appropriate config file in your default editor.
67+
68+
# CONFIGURATION
69+
70+
**~/.config/pip/pip.conf** (Linux), **~/Library/Application Support/pip/pip.conf** (macOS), **%APPDATA%\pip\pip.ini** (Windows)
71+
> User-level configuration file.
72+
73+
**/etc/pip.conf** (Linux/macOS), **C:\ProgramData\pip\pip.ini** (Windows)
74+
> Global system-wide configuration file.
75+
76+
**$VIRTUAL_ENV/pip.conf**
77+
> Site-level configuration file within a virtual environment.
78+
79+
**PIP_CONFIG_FILE**
80+
> Environment variable to override the default config file location.
5981
6082
# SEE ALSO
6183

0 commit comments

Comments
 (0)