Clodflare-backed services only works with some providers in Russia?
Georgy noticed he can't clone from new Cineleraa-gg git server. Even switching to https not resulted in working copy. (it worked for me after I switched from git to https) I am not sure what can be done at server end, if cloudflare's whole network blocked here on our end ..May be teach github to sync automatically? https://faun.pub/github-sync-31dede07c606 may be something from this article? ==== Step 4: The Actual Sync The actual sync is easy enough — rebase and push to both remotes: # .github/actions/sync-branches/action.yml - name: Sync Branches shell: bash run: | for branch in ${{ inputs.branches }}; do echo "Syncing $branch..." # Start from local branch git checkout -B $branch origin/$branch # Rebase changes from mirror git pull mirror-ssh $branch --rebase # Push to both repos git push primary-ssh $branch git push mirror-ssh $branch echo "✓ $branch synced" done [...] Native Git Mirroring git clone --mirror source.git git push --mirror destination.git ==== end of quotation === Configuring side (ssh keys etc) look a bit intimidating for one line script kiddie like me :/
Probably just a minor security issue yet; not sure what the problem is, but not working for me either when checked as recommended: # git clone [email protected]:goodguy/cinelerra.git
Cloning into 'cinelerra'... ssh: connect to host git.cinelerra-gg.org port 22: Network is unreachable fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
For now I am temporarily checking in commits at github.com/phylsmith/Cinelerra-GG and Cinelerra-GG_Manual just so changes not lost over time. On Tue, Nov 11, 2025 at 9:13 PM Andrew Randrianasulu < [email protected]> wrote:
Georgy noticed he can't clone from new Cineleraa-gg git server. Even switching to https not resulted in working copy. (it worked for me after I switched from git to https)
I am not sure what can be done at server end, if cloudflare's whole network blocked here on our end ..May be teach github to sync automatically?
https://faun.pub/github-sync-31dede07c606
may be something from this article?
====
Step 4: The Actual Sync
The actual sync is easy enough — rebase and push to both remotes:
# .github/actions/sync-branches/action.yml - name: Sync Branches shell: bash run: | for branch in ${{ inputs.branches }}; do echo "Syncing $branch..."
# Start from local branch git checkout -B $branch origin/$branch
# Rebase changes from mirror git pull mirror-ssh $branch --rebase
# Push to both repos git push primary-ssh $branch git push mirror-ssh $branch
echo "✓ $branch synced" done
[...]
Native Git Mirroring
git clone --mirror source.git git push --mirror destination.git
==== end of quotation ===
Configuring side (ssh keys etc) look a bit intimidating for one line script kiddie like me :/ _______________________________________________ Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
I stopped routing through Cloudflare on Git. Can you try and see if you can access Git now? I'm still in the process of configuring the server correctly for Phyllis so that she can update Git. It should be done soon. Am 12.11.25 um 05:30 schrieb Phyllis Smith:
Probably just a minor security issue yet; not sure what the problem is, but not working for me either when checked as recommended:
# git clone [email protected]:goodguy/cinelerra.git Cloning into 'cinelerra'... ssh: connect to host git.cinelerra-gg.org <http://git.cinelerra-gg.org> port 22: Network is unreachable fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
For now I am temporarily checking in commits at github.com/phylsmith/Cinelerra-GG <http://github.com/phylsmith/Cinelerra-GG> and Cinelerra-GG_Manual just so changes not lost over time.
On Tue, Nov 11, 2025 at 9:13 PM Andrew Randrianasulu <[email protected]> wrote:
Georgy noticed he can't clone from new Cineleraa-gg git server. Even switching to https not resulted in working copy. (it worked for me after I switched from git to https)
I am not sure what can be done at server end, if cloudflare's whole network blocked here on our end ..May be teach github to sync automatically?
https://faun.pub/github-sync-31dede07c606
may be something from this article?
====
Step 4: The Actual Sync
The actual sync is easy enough — rebase and push to both remotes:
# .github/actions/sync-branches/action.yml - name: Sync Branches shell: bash run: | for branch in ${{ inputs.branches }}; do echo "Syncing $branch..."
# Start from local branch git checkout -B $branch origin/$branch
# Rebase changes from mirror git pull mirror-ssh $branch --rebase
# Push to both repos git push primary-ssh $branch git push mirror-ssh $branch
echo "✓ $branch synced" done
[...]
Native Git Mirroring
git clone --mirror source.git git push --mirror destination.git
==== end of quotation ===
Configuring side (ssh keys etc) look a bit intimidating for one line script kiddie like me :/ _______________________________________________ Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
_______________________________________________ Cin mailing list [email protected] To unsubscribe send an email [email protected]
On Wed, Nov 12, 2025 at 9:19 AM Sam <[email protected]> wrote:
I stopped routing through Cloudflare on Git. Can you try and see if you can access Git now? I'm still in the process of configuring the server correctly for Phyllis so that she can update Git. It should be done soon.
Now it just fails with https: bash-5.1$ git pull fatal: «https://git.cinelerra-gg.org/goodguy/cinelerra.git/» недоступно: SSL certificate problem: unable to get local issuer certificate
Am 12.11.25 um 05:30 schrieb Phyllis Smith:
Probably just a minor security issue yet; not sure what the problem is, but not working for me either when checked as recommended:
# git clone [email protected]:goodguy/cinelerra.git Cloning into 'cinelerra'... ssh: connect to host git.cinelerra-gg.org port 22: Network is unreachable fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
For now I am temporarily checking in commits at github.com/phylsmith/Cinelerra-GG and Cinelerra-GG_Manual just so changes not lost over time.
On Tue, Nov 11, 2025 at 9:13 PM Andrew Randrianasulu <[email protected]> wrote:
Georgy noticed he can't clone from new Cineleraa-gg git server. Even switching to https not resulted in working copy. (it worked for me after I switched from git to https)
I am not sure what can be done at server end, if cloudflare's whole network blocked here on our end ..May be teach github to sync automatically?
https://faun.pub/github-sync-31dede07c606
may be something from this article?
====
Step 4: The Actual Sync
The actual sync is easy enough — rebase and push to both remotes:
# .github/actions/sync-branches/action.yml - name: Sync Branches shell: bash run: | for branch in ${{ inputs.branches }}; do echo "Syncing $branch..."
# Start from local branch git checkout -B $branch origin/$branch
# Rebase changes from mirror git pull mirror-ssh $branch --rebase
# Push to both repos git push primary-ssh $branch git push mirror-ssh $branch
echo "✓ $branch synced" done
[...]
Native Git Mirroring
git clone --mirror source.git git push --mirror destination.git
==== end of quotation ===
Configuring side (ssh keys etc) look a bit intimidating for one line script kiddie like me :/ _______________________________________________ Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
_______________________________________________ Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
_______________________________________________ Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
Thanks for the feedback. You're right, the SSL certificate still needs to be created for Git. I'll take care of that. Am 12.11.25 um 11:21 schrieb Andrew Randrianasulu:
On Wed, Nov 12, 2025 at 9:19 AM Sam <[email protected]> wrote:
I stopped routing through Cloudflare on Git. Can you try and see if you can access Git now? I'm still in the process of configuring the server correctly for Phyllis so that she can update Git. It should be done soon. Now it just fails with https:
bash-5.1$ git pull fatal: «https://git.cinelerra-gg.org/goodguy/cinelerra.git/» недоступно: SSL certificate problem: unable to get local issuer certificate
Am 12.11.25 um 05:30 schrieb Phyllis Smith:
Probably just a minor security issue yet; not sure what the problem is, but not working for me either when checked as recommended:
# git clone [email protected]:goodguy/cinelerra.git Cloning into 'cinelerra'... ssh: connect to host git.cinelerra-gg.org port 22: Network is unreachable fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
For now I am temporarily checking in commits at github.com/phylsmith/Cinelerra-GG and Cinelerra-GG_Manual just so changes not lost over time.
On Tue, Nov 11, 2025 at 9:13 PM Andrew Randrianasulu <[email protected]> wrote:
Georgy noticed he can't clone from new Cineleraa-gg git server. Even switching to https not resulted in working copy. (it worked for me after I switched from git to https)
I am not sure what can be done at server end, if cloudflare's whole network blocked here on our end ..May be teach github to sync automatically?
https://faun.pub/github-sync-31dede07c606
may be something from this article?
====
Step 4: The Actual Sync
The actual sync is easy enough — rebase and push to both remotes:
# .github/actions/sync-branches/action.yml - name: Sync Branches shell: bash run: | for branch in ${{ inputs.branches }}; do echo "Syncing $branch..."
# Start from local branch git checkout -B $branch origin/$branch
# Rebase changes from mirror git pull mirror-ssh $branch --rebase
# Push to both repos git push primary-ssh $branch git push mirror-ssh $branch
echo "✓ $branch synced" done
[...]
Native Git Mirroring
git clone --mirror source.git git push --mirror destination.git
==== end of quotation ===
Configuring side (ssh keys etc) look a bit intimidating for one line script kiddie like me :/ _______________________________________________ Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
_______________________________________________ Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
_______________________________________________ Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
On Wed, 12 Nov 2025, Sam wrote:
I stopped routing through Cloudflare on Git. Can you try and see if you can access Git now? I'm still in the process of configuring the server
Thank you, Sam! git.cinelerra-gg.org works now without VPN or other bypassing tools. Without special options it complains: git clone https://git.cinelerra-gg.org/goodguy/cinelerra.git Cloning into 'cinelerra'... fatal: unable to access 'https://git.cinelerra-gg.org/goodguy/cinelerra.git/': SSL certificate problem: unable to get local issuer certificate There are several easy solutions for the client side: a) git -c http.sslVerify=false clone https://git.cinelerra-gg.org/goodguy/cinelerra.git But then it is necessary to add the option -c http.sslVerify=false to all the git commands, like: git pull fatal: unable to access 'https://git.cinelerra-gg.org/goodguy/cinelerra.git/': SSL certificate problem: unable to get local issuer certificate git -c http.sslVerify=false pull Already up to date. b) git config --global http.sslVerify false Then certificate checking is bypassed for any further git commands c) Download the problematic certificate (either via web browser, or you can untar it from the attachment to this email). Place the certificate file under the following path/name: /usr/local/share/ca-certificates/cloudflare-origin-certificate.crt (the file must be renamed to have the suffix .crt). Run the following command (the package 'ca-certificates' must be installed): update-ca-certificates Then the cloudflare certificate will be trusted and git will stop complaining. The solutions for the server side knows Sam. _______________________________________________________________________________ Georgy Salnikov NMR Group Novosibirsk Institute of Organic Chemistry Lavrentjeva, 9, 630090 Novosibirsk, Russia Phone +7-383-3307864 Email [email protected] _______________________________________________________________________________
Git now has a valid SSL certificate. You can access git without Cloudflare. Please test it and give me some brief feedback. Thanks in advance. Am 12.11.25 um 11:56 schrieb Georgy Salnikov:
On Wed, 12 Nov 2025, Sam wrote:
I stopped routing through Cloudflare on Git. Can you try and see if you can access Git now? I'm still in the process of configuring the server Thank you, Sam!
git.cinelerra-gg.org works now without VPN or other bypassing tools.
Without special options it complains:
git clone https://git.cinelerra-gg.org/goodguy/cinelerra.git Cloning into 'cinelerra'... fatal: unable to access 'https://git.cinelerra-gg.org/goodguy/cinelerra.git/': SSL certificate problem: unable to get local issuer certificate
There are several easy solutions for the client side:
a) git -c http.sslVerify=false clone https://git.cinelerra-gg.org/goodguy/cinelerra.git
But then it is necessary to add the option -c http.sslVerify=false to all the git commands, like:
git pull fatal: unable to access 'https://git.cinelerra-gg.org/goodguy/cinelerra.git/': SSL certificate problem: unable to get local issuer certificate
git -c http.sslVerify=false pull Already up to date.
b) git config --global http.sslVerify false Then certificate checking is bypassed for any further git commands
c) Download the problematic certificate (either via web browser, or you can untar it from the attachment to this email).
Place the certificate file under the following path/name: /usr/local/share/ca-certificates/cloudflare-origin-certificate.crt (the file must be renamed to have the suffix .crt).
Run the following command (the package 'ca-certificates' must be installed):
update-ca-certificates
Then the cloudflare certificate will be trusted and git will stop complaining.
The solutions for the server side knows Sam. _______________________________________________________________________________
Georgy Salnikov NMR Group Novosibirsk Institute of Organic Chemistry Lavrentjeva, 9, 630090 Novosibirsk, Russia Phone +7-383-3307864 Email [email protected] _______________________________________________________________________________
_______________________________________________ Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
On Thu, Nov 13, 2025 at 3:07 PM Sam <[email protected]> wrote:
Git now has a valid SSL certificate. You can access git without Cloudflare. Please test it and give me some brief feedback. Thanks in advance.
On my end https now works without errors, both in Termux and on Slackware desktop Thanks
Am 12.11.25 um 11:56 schrieb Georgy Salnikov:
On Wed, 12 Nov 2025, Sam wrote:
I stopped routing through Cloudflare on Git. Can you try and see if you can access Git now? I'm still in the process of configuring the server Thank you, Sam!
git.cinelerra-gg.org works now without VPN or other bypassing tools.
Without special options it complains:
git clone https://git.cinelerra-gg.org/goodguy/cinelerra.git Cloning into 'cinelerra'... fatal: unable to access 'https://git.cinelerra-gg.org/goodguy/cinelerra.git/': SSL certificate problem: unable to get local issuer certificate
There are several easy solutions for the client side:
a) git -c http.sslVerify=false clone https://git.cinelerra-gg.org/goodguy/cinelerra.git
But then it is necessary to add the option -c http.sslVerify=false to all the git commands, like:
git pull fatal: unable to access 'https://git.cinelerra-gg.org/goodguy/cinelerra.git/': SSL certificate problem: unable to get local issuer certificate
git -c http.sslVerify=false pull Already up to date.
b) git config --global http.sslVerify false Then certificate checking is bypassed for any further git commands
c) Download the problematic certificate (either via web browser, or you can untar it from the attachment to this email).
Place the certificate file under the following path/name: /usr/local/share/ca-certificates/cloudflare-origin-certificate.crt (the file must be renamed to have the suffix .crt).
Run the following command (the package 'ca-certificates' must be installed):
update-ca-certificates
Then the cloudflare certificate will be trusted and git will stop complaining.
The solutions for the server side knows Sam. _______________________________________________________________________________
Georgy Salnikov NMR Group Novosibirsk Institute of Organic Chemistry Lavrentjeva, 9, 630090 Novosibirsk, Russia Phone +7-383-3307864 Email [email protected] _______________________________________________________________________________
_______________________________________________ Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
Cin mailing list -- [email protected] To unsubscribe send an email to [email protected]
participants (4)
-
Andrew Randrianasulu -
Georgy Salnikov -
Phyllis Smith -
Sam