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 git@git.cinelerra-gg.org: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 <randrianasulu@gmail.com> 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 -- cin@lists.cinelerra-gg.org
To unsubscribe send an email to cin-leave@lists.cinelerra-gg.org

_______________________________________________
Cin mailing list -- cin@lists.cinelerra-gg.org
To unsubscribe send an email to cin-leave@lists.cinelerra-gg.org