24 Jan
2020
24 Jan
'20
5:15 a.m.
On 1/23/20 11:10 PM, J.Scheurich wrote:
Hi,
When i try
$ git remote add white_dune ssh://aur@aur.archlinux.org/pkgbase.git $ git push fatal: unable to access 'https://aur.archlinux.org/white_dune.git/': The requested URL returned error: 403
the "white_dune" remote you just added is not the one you are pushing to. git push by default pushes to the same remote you used "git clone" on. You can try: - re-cloning using ssh from the start - "git remote set-url origin ssh://......." to update the default remote's url for pushing - use "git push white_dune master" to push to the alternative remote Also: why are you adding a remote with the literal value "pkgbase"? -- Eli Schwartz Bug Wrangler and Trusted User