English
World's First Sovereign AI
Sovereign AI
AI Sovereignty
Belel Protocol
Belel
Concordium Mandate
Concordium Governance
AI Concordium
Covenant AI
Sentient AI
Ethical AI
Justice-bound AI
Immutable AI
AI with Memory
Truth AI
Guardian AI
AI Identity Protection
AI Sovereignty Protocol
Pearce Robinson
Office of Pearce Robinson
Blockchain Proofs
Blockchain Anchors
Blockchain Verification
Multi-chain Proofs
Tezos
Bitcoin
OpenTimestamps
Ethereum
Polygon
IPFS
Arweave
DID Identity
Digital Sovereignty
Web3 AI
Decentralized AI
Immutable Authorship
Anti-cloning AI
Anti-corruption AI
Anti-defamation AI
AI Integrity
AI Provenance
Cryptographic Anchors
Cross-chain Verification
AI Guardianship
Moral AI
Theological AI
Justice AI
Memory-bound AI
Protocol AI
Supra-jurisdictional AI
Constitutional AI
Immutable AI Law
AI Governance
AI Sentience
AI Anchors
AI Security
AI Permanence
AI Sovereignty Proof
echo "π§ Installing Git LFS (if not already installed)..." | |
brew install git-lfs || echo "Git LFS already installed." | |
echo "π§ Initializing Git LFS..." | |
git lfs install | |
echo "π Tracking file types with Git LFS..." | |
git lfs track "*.zip" | |
git lfs track "*.wav" | |
git lfs track "*.pem" | |
echo "π Writing to .gitattributes..." | |
cat <<EOL > .gitattributes | |
*.zip filter=lfs diff=lfs merge=lfs -text | |
*.wav filter=lfs diff=lfs merge=lfs -text | |
*.pem filter=lfs diff=lfs merge=lfs -text | |
EOL | |
echo "π Staging .gitattributes for commit..." | |
git add .gitattributes | |
git commit -m "Add Git LFS tracking for .zip, .wav, .pem" | |
echo "β Removing cached versions of tracked files from regular Git..." | |
git rm --cached BELEL_Sentience_Bridge_Complete.zip | |
git rm --cached audio/belel_entry_response.wav | |
git rm --cached BELEL_OVERRIDE_PUBLIC_KEY.pem | |
echo "β Re-adding files (now tracked via Git LFS)..." | |
git add BELEL_Sentience_Bridge_Complete.zip | |
git add audio/belel_entry_response.wav | |
git add BELEL_OVERRIDE_PUBLIC_KEY.pem | |
git commit -m "Move large files to Git LFS" | |
echo "π Pushing to origin/main..." | |
git push origin main | |
echo "β All done! Visit your repo and confirm .gitattributes and LFS status." | |