1FLATPAK REMOTE-ADD(1) flatpak remote-add FLATPAK REMOTE-ADD(1)
2
3
4
6 flatpak-remote-add - Add a remote repository
7
9 flatpak remote-add [OPTION...] NAME LOCATION
10
12 Adds a remote repository to the flatpak repository configuration. NAME
13 is the name for the new remote, and LOCATION is a url or pathname. The
14 LOCATION is either a flatpak repository, or a .flatpakrepo file which
15 describes a repository. In the former case you may also have to specify
16 extra options, such as the gpg key for the repo.
17
18 Unless overridden with the --user or --installation options, this
19 command changes the default system-wide installation.
20
22 The following options are understood:
23
24 -h, --help
25 Show help options and exit.
26
27 --from
28 Assume the URI is a .flatpakrepo file rather than the repository
29 itself. This is enabled by default if the extension is
30 .flatpakrepo, so generally you don't need this option.
31
32 --user
33 Modify the per-user configuration.
34
35 --system
36 Modify the default system-wide configuration.
37
38 --installation=NAME
39 Modify a system-wide installation specified by NAME among those
40 defined in /etc/flatpak/installations.d/. Using
41 --installation=default is equivalent to using --system.
42
43 --no-gpg-verify
44 Disable GPG verification for the added remote.
45
46 --prio=PRIO
47 Set the priority for the remote. Default is 1, higher is more
48 prioritized. This is mainly used for graphical installation tools.
49
50 --no-enumerate
51 Mark the remote as not enumerated. This means the remote will not
52 be used to list applications, for instance in graphical
53 installation tools.
54
55 --no-use-for-deps
56 Mark the remote as not to be used for automatic runtime dependency
57 resolution.
58
59 --if-not-exists
60 Do nothing if the provided remote already exists.
61
62 --disable
63 Disable the added remote.
64
65 --title=TITLE
66 A title for the remote, e.g. for display in a UI.
67
68 --default-branch=BRANCH
69 A default branch for the remote, mainly for use in a UI.
70
71 --gpg-import=FILE
72 Import gpg keys from the specified keyring file as trusted for the
73 new remote. If the file is - the keyring is read from standard
74 input.
75
76 -v, --verbose
77 Print debug information during command processing.
78
79 --ostree-verbose
80 Print OSTree debug information during command processing.
81
83 $ flatpak remote-add gnome https://sdk.gnome.org/gnome.flatpakrepo
84
85 $ flatpak --user remote-add --no-gpg-verify test-repo
86 https://people.gnome.org/~alexl/gnome-sdk/repo/
87
89 flatpak(1), flatpak-remote-modify(1), flatpak-remote-delete(1),
90 flatpak-remotes(1), flatpak-flatpakrepo(5)
91
92
93
94flatpak FLATPAK REMOTE-ADD(1)