Skip to content

Commit ac982de

Browse files
author
Joe Previte
committedMar 8, 2021
docs: add ssh information
1 parent e78b62e commit ac982de

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed
 

‎README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,28 @@ makepkg --printsrcinfo > .SRCINFO
2222
- If you don't have this set up, run `git remote add aur ssh://aur@aur.archlinux.org/code-server.git`
2323
- Run `git push aur`
2424

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)
41+
42+
Read more: https://wiki.archlinux.org/index.php/AUR_submission_guidelines
43+
2544
### New Maintainers
2645

27-
If a new maintainer joins the project, please add them to the top of `PKGBUILD`
46+
If a new maintainer joins the project, please add them to the top of `PKGBUILD`.
2847

2948
### Removing Old Maintainers
3049

0 commit comments

Comments
 (0)
Please sign in to comment.