blob: e2968cf8d4c71d56fa85bd23e5209169af4b897a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
Add a ssh remote
```bash
git remote add aur ssh://aur@aur.archlinux.org/keybase-git.git
```
Configure your `.ssh/config` to use the `aur` user:
```
HostName aur.archlinux.org
IdentityFile ~/.ssh/aur_id_ed25519
User aur
```
To update the version, run
```bash
makepkg --nobuild
```
Before committing, you must rebuild .SRCINFO:
```bash
make build
```
To push to AUR, configure SSH creds and
```bash
make push-aur
```
|