What you'll need
- Podman
- Docker
- Knowledge (basic) Linux
Limits
File Size Limits: Files larger than 100 MB are blocked, and files over 50 MiB will trigger a warning. For large files (like images, videos, or datasets), you must use Git Large File Storage
Only good for pics and text unless if you use git lfs
Only issue for most people:
Pricing Options
Git LFS is open-source and free to use, but remote hosting services have limits. For instance, GitHub and Bitbucket offer a set amount of storage and bandwidth for free, with options to purchase additional capacity (e.g., 100 GB for $10/month on Bitbucket).
For radicle:
Git LFS (Large File Storage) and
Radicle are related in that they both interact with the Git ecosystem, but they are separate tools with different purposes. Radicle is currently considering adding support for LFS or similar solutions like git-annex for handling large files.
Current Status regarding LFS: Radicle uses standard Git for data transfer and is designed to handle moderately-sized binaries. Its developers have stated they are considering adding support for solutions like Git LFS or git-annex in the future to better manage very large files, such as AI models and datasets, within the decentralized network.
Docker compose
Input these in the docker image with the gui of your choice.
mkdir -p ./targetdir && cp /mnt/repos/ ./targetdir && cd targetdir && git config --global user.email "[email protected]" && git config --global user.name "name" && git init && git add . && git commit -m "."
|