this post was submitted on 12 Jun 2026
3 points (71.4% liked)

Git

4670 readers
9 users here now

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

Resources

Rules

  1. Follow programming.dev rules
  2. Be excellent to each other, no hostility towards users for any reason
  3. No spam of tools/companies/advertisements. It’s OK to post your own stuff part of the time, but the primary use of the community should not be self-promotion.

Git Logo by Jason Long is licensed under the Creative Commons Attribution 3.0 Unported License.

founded 3 years ago
MODERATORS
 

im working on a decentralized messaging app and generally up until recently i thought in such a system, if a peer is offline, you cant send a message... it wouldnt be "decentralized" if there was some central queue of messages.

it took embarassingly long, but then it hit me... git... just regular git is a decentralized database.

in my setup i need the ability for others to be abe to read and only i should be able to write to it. that functionality is out-the-box in git.

git is also pretty standardized so there are many providers if users want to move away from Github.

the storage requirements for my project are fairly small. typically small text messages. the data itself thats publicly readable would be encrypted.

you are viewing a single comment's thread
view the rest of the comments
[–] asdfasdfasdf@lemmy.world 6 points 3 days ago (1 children)

Pretty easy for the few platforms offering this to ban you and any accounts hosting your project, even if you make a new one.

[–] xoron@programming.dev -1 points 3 days ago (1 children)

In any case it wouldn't be on my account. It would be great for users to self-host. Things like GitHub would only make it easier to get started to test things out.

Why would they ban my account? That would be unsettling. I'm a developer. The code itself is fairly basic git stuff.

My project is hardly popular, but if it gets there, I'm sure it would impact githubs performance. Would the concern be that my app ddos GitHub? I can explicitly prevent remotes like GitHub if necessary.

[–] EarMaster@lemmy.world 3 points 3 days ago (1 children)

Maybe you should warn your users that there is a risk of getting banned so they don't use their actual account for that.

[–] xoron@programming.dev 1 points 3 days ago

thanks. i'll aim to do that. i'll see if i can figure out who to reach out to from github and etc to ask.