# Guía: Clonar CD-System hacia Terashe

## Proceso Correcto

El script `clone-to-new-repo.sh` debe ejecutarse desde el **repositorio destino** (terashe), no desde cd-system.

### Paso 1: Clonar el repositorio terashe (vacío o nuevo)

```bash
# Ir al directorio padre
cd /Applications/XAMPP/xamppfiles/htdocs

# Clonar el repositorio terashe (si está vacío, crear directorio)
mkdir terashe
cd terashe
git init
git remote add origin https://github.com/LACOMPANIADIGITAL/terashe.git
```

### Paso 2: Ejecutar el script desde terashe

```bash
# Desde el directorio terashe
cd /Applications/XAMPP/xamppfiles/htdocs/terashe

# Copiar el script desde cd-system (o ejecutarlo directamente)
cp ../cd-system/scripts/clone-to-new-repo.sh .
chmod +x clone-to-new-repo.sh

# Ejecutar el script
./clone-to-new-repo.sh https://github.com/LACOMPANIADIGITAL/terashe.git
```

### Paso 3: Push inicial

```bash
git push -u origin cd-system
```

