mirror of
https://github.com/automazeio/ccpm.git
synced 2025-10-09 13:41:06 +03:00
875 B
875 B
Quick Install
Unix/Linux/macOS
curl -sSL https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.sh | bash
Or with wget:
wget -qO- https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.sh | bash
Windows (PowerShell)
iwr -useb https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.bat | iex
Or download and execute:
curl -o ccpm.bat https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.bat && ccpm.bat
One-liner alternatives
Unix/Linux/macOS (direct commands)
git clone https://github.com/automazeio/ccpm.git . && rm -rf .git
Windows (cmd)
git clone https://github.com/automazeio/ccpm.git . && rmdir /s /q .git
Windows (PowerShell)
git clone https://github.com/automazeio/ccpm.git .; Remove-Item -Recurse -Force .git