-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
- Loading branch information
1 parent
0fdfd4c
commit 16d7f93
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# tlmgr pinning | ||
|
||
> The pinning action manages the pinning file. | ||
> More information: <https://www.tug.org/texlive/doc/tlmgr.html#pinning>. | ||
- Show the current pinning data: | ||
|
||
`tlmgr pinning show` | ||
|
||
- Pin the matching the packages to the given repository: | ||
|
||
`tlmgr pinning add {{repository}} {{package1 package2 ...}}` | ||
|
||
- Remove any packages recorded in the pinning file matching the packages for the given repository: | ||
|
||
`tlmgr pinning remove {{repository}} {{package1 package2 ...}}` | ||
|
||
- Remove all pinning data for the given repository: | ||
|
||
`tlmgr pinning remove {{repository}} --all` |