Add Git LFS configuration, .gitignore, and README for setup instructions

This commit is contained in:
2025-08-25 13:23:08 +01:00
commit 405c83cbe8
3 changed files with 505 additions and 0 deletions

34
README.md Normal file
View File

@ -0,0 +1,34 @@
# LFS (Large File Storage) Template Repository 🚀
## 🛠️ Git LFS Setup
### Windows
```bash
# With Chocolatey
choco install git-lfs
# With Scoop
scoop install git-lfs
```
### macOS
```bash
# With Homebrew
brew install git-lfs
# With MacPorts
sudo port install git-lfs
```
### Linux (Ubuntu/Debian)
```bash
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
sudo apt-get install git-lfs
```
### Linux (CentOS/RHEL/Fedora)
```bash
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash
sudo yum install git-lfs
```