Re: Moving to Github ... ?

"Michael D. Setzer II via busybox" <[email protected]> Fri, 8 May 2026 22:00:28 +1000
Newsgroups gmane.linux.busybox
Message-ID <[email protected]>
On 8 May 2026 at 13:23, Tomas Volf via busybox wrote:

To:             	Alexis via busybox <[email protected]>
Subject:        	Re: Moving to Github ... ?
Date sent:      	Fri, 08 May 2026 13:23:56 +0200
From:           	Tomas Volf via busybox <[email protected]>
Send reply to:  	Tomas Volf <[email protected]>

> Alexis via busybox <[email protected]> writes:
> 
> > tito via busybox <[email protected]> writes:
> >
> >> Yes it is at https://github.com/vda-linux/busybox_mirror/commits/master/
> >>
> >> Too many requests
> >>
> >> You have exceeded a secondary rate limit.
> >
> > Odd. That URL also just worked for me instantly, again without me being signed
> > in to GitHub.
> >
> > Are you on a dynamic IP, or do you have a static IP?
> >
> > i'd also be interested to know if others are having the same issue ....
> 
> I am also getting same error message.
> 


Script I use for the mirror size and not seeing any error message?
cat gitpull_mirror.sh 
#!/bin/bash
clear
if [ "$EUID" -ne 0 ] ; then
    echo -e 'Need to be root user';exit 1
fi
cd /home/msetzerii/Downloads/busybox_mirror || exit
git remote set-url origin 
https://github.com/vda-linux/busybox_mirror
# Save the current state
PRE_PULL=$(git rev-parse HEAD)
echo $PRE_PULL PRE__PULL
# Pull (silencing the progress noise if you want)
git pull  > /tmp/gitpull_out 2>> /tmp/gitpull_err
EXIT_CODE=$?
if [ $EXIT_CODE -eq 128 ]; then
	echo $EXIT_CODE Error
	exit
fi
# Check the new state
POST_PULL=$(git rev-parse HEAD)
echo $POST_PULL POST_PULL

if [ $EXIT_CODE -ne 0 ]; then
	echo "Pull failed with code $EXIT_CODE. Check 
/tmp/gitpull_err"
	exit
elif [ "$PRE_PULL" == "$POST_PULL" ]; then
	echo "Nothing changed (Already up to date)."
else
	echo "Success: New changes were applied."
fi
echo ""
git log --pretty=format:"<%h> %cd [%an] %s" --date=short | head 
-n 20

Similar one for the busybox.net site.
Just these differences.
cd /home/msetzerii/Downloads/busybox || exit
git remote set-url origin https://git.busybox.net/busybox

output shows.
cd /home/msetzerii/Downloads/busybox || exit
git remote set-url origin https://git.busybox.net/busybox

Then the log entries.

> -- 
> There are only two hard things in Computer Science:
> cache invalidation, naming things and off-by-one errors.
> _______________________________________________
> busybox mailing list
> [email protected]
> https://lists.busybox.net/mailman/listinfo/busybox


+------------------------------------------------------------+
 Michael D. Setzer II - Computer Science Instructor (Retired)     
 mailto:[email protected]                            
 mailto:[email protected]
 mailto:[email protected]
 Guam - Where America's Day Begins                        
 G4L Disk Imaging Project maintainer 
 http://sourceforge.net/projects/g4l/
+------------------------------------------------------------+