Compare commits

...

3 Commits

Author SHA1 Message Date
Gokul333dev
f3052ac855 Merge 443a3b299c into a8bc6fbcf1 2025-07-07 19:25:44 +02:00
Vencyr Laurence Imbo Amores
a8bc6fbcf1 update to byox banner 2025-07-07 22:14:17 +08:00
Gokul333dev
443a3b299c Add Git-like VCS with core commands and custom compression
Implements a minimal version control system named Kudu with support for init, add, commit, status, log, diff, and checkout. Uses SHA-1 hashing, a custom DEFLATE-based compression layer, and a .kudu directory for internal storage.
2025-06-14 13:50:30 +05:30

View File

@@ -1,4 +1,4 @@
[![Banner](https://codecrafters.io/images/new-byox-banner.gif)](https://codecrafters.io/github-banner) [![Banner](https://codecrafters.io/images/updated-byox-banner.gif)](https://codecrafters.io/github-banner)
## Build your own <insert-technology-here> ## Build your own <insert-technology-here>
@@ -226,6 +226,7 @@ It's a great way to learn.
* [**Haskell**: _Reimplementing “git clone” in Haskell from the bottom up_](http://stefan.saasen.me/articles/git-clone-in-haskell-from-the-bottom-up/) * [**Haskell**: _Reimplementing “git clone” in Haskell from the bottom up_](http://stefan.saasen.me/articles/git-clone-in-haskell-from-the-bottom-up/)
* [**JavaScript**: _Gitlet_](http://gitlet.maryrosecook.com/docs/gitlet.html) * [**JavaScript**: _Gitlet_](http://gitlet.maryrosecook.com/docs/gitlet.html)
* [**JavaScript**: _Build GIT - Learn GIT_](https://kushagra.dev/blog/build-git-learn-git/) * [**JavaScript**: _Build GIT - Learn GIT_](https://kushagra.dev/blog/build-git-learn-git/)
* [**Node.js**: _A tiny Git-like VCS with custom compression, commits, diff, and checkout_](https://github.com/Gokul333dev/kudu)
* [**Python**: _Just enough of a Git client to create a repo, commit, and push itself to GitHub_](https://benhoyt.com/writings/pygit/) * [**Python**: _Just enough of a Git client to create a repo, commit, and push itself to GitHub_](https://benhoyt.com/writings/pygit/)
* [**Python**: _Write yourself a Git!_](https://wyag.thb.lt/) * [**Python**: _Write yourself a Git!_](https://wyag.thb.lt/)
* [**Python**: _ugit: Learn Git Internals by Building Git Yourself_](https://www.leshenko.net/p/ugit/) * [**Python**: _ugit: Learn Git Internals by Building Git Yourself_](https://www.leshenko.net/p/ugit/)