2 Repos
Full implementations of version control systems rewritten in Go for performance and dependency-free operation.
Distinct from Go Language Implementations: Specifically targets the reimplementation of version control logic, whereas the parent covers any general software rewritten in Go.
Explore 2 awesome GitHub repositories matching programming languages & runtimes · Version Control Implementations. Refine with filters or upvote what's useful.
Gogs is a self-hosted Git service and repository manager written in Go. It provides a web-based hosting platform for storing version-controlled repositories with a focus on lightweight deployment across various operating systems and hardware architectures. The system distinguishes itself through a single-binary deployment model, which simplifies installation. It also supports repository migration, allowing users to move existing codebases and documentation from other hosting services into a self-managed environment. The platform covers collaborative code development through pull requests and
Implements a full version control system rewritten in Go for efficient deployment across various architectures.
This project is a pure Go implementation of the Git version control system, providing a library for integrating versioning and history analysis into applications. It functions as a complete repository manager and object store that does not require external binary dependencies. The implementation utilizes interface-based storage, allowing repositories to be managed on disk or entirely in memory. It supports a transactional storage model to ensure atomic operations and implements a content-addressable storage system using delta-compression packfiles. The library covers a broad range of version
Provides a pure Go implementation of the Git version control system, removing dependencies on external C libraries.