On Mon, 3 Nov 2025, Andrey Grozin wrote:
On Sun, 26 Oct 2025, Robin H. Johnson wrote:
Suggestions:
- Add a remote for separate anongit nodes and fetch from one of those
first
git remote add anongit git://anongit.gentoo.org/repo/gentoo
git remote add anongit-wagtail
git://wagtail.anongit.gentoo.org/repo/gentoo
git remote add anongit-calonectris
git://calonectris.anongit.gentoo.org/repo/gentoo
I've done this.
git pull anongit master
succeeds. Now I do a single commit - a version bump of
sci-geosciences/gpxsee. How can I push it to git.gentoo.org?
Should I use
pkgdev push
for this?
I seem to find a way which works
git pull anongit master
git pull origin master
<do_changes>
pkgdev commit -m '...'
pkgdev push
Andrey