Adds README, LICENSE (MIT), .gitignore, Makefile, CONTRIBUTING, CHANGELOG, SECURITY, CODEOWNERS, .editorconfig, .github/workflows/ci.yml, and docs/ARCHITECTURE.md + docs/adr/0001 to bring this repository up to the CxLLM family baseline.
9 lines
189 B
Bash
Executable File
9 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# An example hook script to prepare a packed repository for use over
|
|
# dumb transports.
|
|
#
|
|
# To enable this hook, rename this file to "post-update".
|
|
|
|
exec git update-server-info
|