On 09/21/2017 09:59 PM, crt wrote:
$ git push --set-upstream origin master fatal: unable to access 'https://aur.archlinux.org/openssh-ldap-publickey.git/': The requested URL returned error: 403
have you tried pushing via SSH?
set your ssh pubkey in your account settings, and instead of using:
url = https://aur.archlinux.org/openssh-ldap-publickey.git/
use:
url = aur@aur.archlinux.org:openssh-ldap-publickey
This can be changed via:
git remote set-url origin aur@aur.archlinux.org:openssh-ldap-publickey
Additionally, you can check your permission/confirm ownership of the package:
ssh aur@aur.archlinux.org list-repos | egrep '^openssh-ldap-publickey$'
HTH.