triptico.com is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.
This server runs the snac software and there is no automatic sign-up process.
Today's new release of the #gameoftrees version control system finally makes it possible to have a #git repository web frontend on the Game of Trees Hub, including the ability to serve static web sites directly out of hosted repositories.
We are in the process of upgrading all user VMs to make these new features available.
Watch the (upcoming in one hour) #fosdem presentation by @op in the BSD devroom to learn more about how our web server implementation works: https://fosdem.org/2026/schedule/event/K7YXFT-gotweb/
git push --force <remote> <branch> not just do the same by overwriting the remote repository with the locals contents ? Or could I end up with files in the remote that are not in my local ???Git tip: Create a `.gitmessage` template file and set it with `git config commit.template ~/.gitmessage`. Consistent commit messages improve team communication and project history. #Git
Git tip: Use `git commit --fixup <hash>` for small fixes, then `git rebase -i --autosquash` to automatically organize them. Keeps commit history clean during development. #Git