mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-05 14:44:24 +00:00
26 lines
614 B
Plaintext
26 lines
614 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# add-apt-repository
|
|
|
|
> Manage `apt` repository definitions.
|
|
> More information: <https://manned.org/add-apt-repository>.
|
|
|
|
- Add a new `apt` repository:
|
|
|
|
`add-apt-repository {{repository_spec}}`
|
|
|
|
- Remove an `apt` repository:
|
|
|
|
`add-apt-repository {{[-r|--remove]}} {{repository_spec}}`
|
|
|
|
- Update the package cache after adding a repository:
|
|
|
|
`add-apt-repository --update {{repository_spec}}`
|
|
|
|
- Allow source packages to be downloaded from the repository:
|
|
|
|
`add-apt-repository {{[-s|--enable-source]}} {{repository_spec}}`
|