this post was submitted on 22 Aug 2026
259 points (98.9% liked)

Technology

87515 readers
3100 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] MonkderVierte@lemmy.zip 41 points 2 days ago* (last edited 2 days ago) (5 children)

Maybe we could build a distributed Github you can't just delete with something decentralized and versioning, like Hypercore protocol or IPLD (InterPlanetary Linked Data), Ceramic Network?

About legality: that's (japanese) Nintendo using US media laws gone rogue to swipe repos on a US hoster (Github). Maybe don't use a US hoster next time.
And yeah, Europe isn't much better there.

[–] NotMyOldRedditName@lemmy.world 2 points 1 day ago* (last edited 1 day ago)

It'd be interesting to see something built ontop of things like IPLD or IPFS (which uses IPLD)

Speed isn't really a important factor for something like this.

[–] warm@kbin.earth 66 points 2 days ago (2 children)

Github =/= git.

Just stop using Github already.

and also we have a generic term for GitHub like things, they are called forges, in this case (GitHub) it is a forge for git (the underlying SVC powering it) only

[–] filcuk@feddit.uk 0 points 1 day ago (1 children)

I am not so sure this situation would be much better on other services. Nintendo could steamroll smaller companies.

[–] warm@kbin.earth 1 points 1 day ago (1 children)

You can host it on servers outside of their jurisdiction or with laws that better protect or prevent companies abuse. Anyone can host git is the point, you dont have to use GitHub.

[–] filcuk@feddit.uk 1 points 10 hours ago

Have you seen what happens to ANY website hosting pirated Nintendo content? How many of them are still online?

[–] dudeface@lemmy.world 23 points 2 days ago (2 children)

Git is meant to be decentralised

[–] Zwuzelmaus@feddit.org 22 points 2 days ago

And it is.

Github isn't.

[–] MonkderVierte@lemmy.zip 4 points 2 days ago (1 children)

Yeah, but it needs a address to point to, to work with others repositories. Which with http is centralized. Wouldn't be with a distributed protocol.

[–] dudeface@lemmy.world 9 points 2 days ago (1 children)

I don’t think you know how git works

[–] MonkderVierte@lemmy.zip 2 points 2 days ago* (last edited 2 days ago) (1 children)

I do know that it keeps a local copy of the repo. But it's not designed to work with a pool, so it needs a specific address to work together/clone/share repos.

I'm by no means an expert in git, did i overlook something?

[–] Anafabula@discuss.tchncs.de 9 points 2 days ago (1 children)

Technically you can add as many remotes to a repo as you want and push/pull to any/all of them. Might be annoying though

[–] mesamunefire@piefed.social 2 points 2 days ago

Its quite common in some industries. Lots of different git remote references no github. It works well when you dont care or dont want piulic repos out in the wild.

I used to do a ton of contract work that way. It went away forva bit but about 3 years ago its coming back. Ive heard complaits about ai and that github is much less stable.

You cant have downtime in some industries.

[–] mote@lemmy.ca 22 points 2 days ago (1 children)

I have not tried/used it (yet?), but the kids are building Radicle for this very purpose. It gets a fair amount of techie coverage (blogs, comments, etc.) but sits in unique space compared to, say, Forgejo (classic self-hosted git).

[–] MonkderVierte@lemmy.zip 2 points 2 days ago* (last edited 2 days ago)

Looks interesting, thanks!

But i thought more, like; since IPFS doesn't delete data, writes changes separately. If we had that with protocolizing (which IPLD seems to do), we would have something like a decentral git.

[–] Fisch@discuss.tchncs.de 18 points 2 days ago (1 children)

There are already alternatives to GitHub and I think Forgejo is still working on federation. The most active Yuzu fork (as far as I'm aware) is Eden and that has its own Forgejo instance.

[–] MonkderVierte@lemmy.zip 0 points 2 days ago (1 children)

There's also a p2p "plugin" to git, but things like that always feel like a workaround to me. The random hacker in India also doesn't know about it.

[–] Fisch@discuss.tchncs.de 3 points 2 days ago (1 children)

I don't really see what that solves tbh. Not having a central source of truth seems like it could cause issues and git is already pretty much decentralized because everyone who's working on a repo will have a copy on their own device and cam upload that to whatever forge they want. Aside from that, you lose all the features a git forge gives you, especially the ability for people to actually find the repo.

[–] MonkderVierte@lemmy.zip 1 points 2 days ago (1 children)

especially the ability for people to actually find the repo.

Vs. a random git URL or a centralized repo everyone knows?

[–] Fisch@discuss.tchncs.de 4 points 2 days ago

Everything you can find on the internet is a "random URL" in that sense but that URL can be searched on search engines and shared. But I don't know how that p2p git thing works, so maybe I'm assuming it's more complicated than it actually is.