You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- If you don't have this set up, run `git remote add aur ssh://aur@aur.archlinux.org/code-server.git`
23
23
- Run `git push aur`
24
24
25
+
### SSH Key
26
+
27
+
In order to publish updates to AUR, you'll need to have an SSH key pair setup.
28
+
29
+
1. Create a config file file `~/.ssh/config`
30
+
```text
31
+
Host aur.archlinux.org
32
+
IdentityFile ~/.ssh/aur
33
+
User aur
34
+
```
35
+
2. Create a new key pair by running:
36
+
```shell
37
+
ssh-keygen -f ~/.ssh/aur
38
+
```
39
+
3. This will create a new public key at `.ssh/aur.pub`. Copy this and add to your AUR account under [My Account](https://aur.archlinux.org/account/yourusername/edit/) > SSH Public Key
40
+
4. You may also need to be added by the package maintainer (@coadler)
0 commit comments