Git Utility Documentation
=========================

Overview
--------
This utility provides a structured installer system for Git-related
resources. It supports external bundle decoding, architecture notes,
and code samples that can be deployed across environments.

Contents
--------
1. Installation Process
2. Bundle Structure
3. Decoding Pipeline
4. Architecture Overview
5. Code Module Summary

Installation Process
--------------------
The installer reads three bundles:
- docs.64
- code.64
- arch.64

Each bundle is encoded using gzip + base64 and validated with SHA256
checksums. The installer extracts each bundle into its respective
directory under the git/ root.

Bundle Structure
----------------
Bundles are stored in:
git/data/chunks64/

Decoded output is written to:
git/docs/
git/code/
git/arch/

Decoding Pipeline
-----------------
1. base64 decode
2. gzip decompress
3. checksum verification
4. write output file

This ensures integrity and portability across systems.

End of Documentation

