Skip to content

Quick Start

This guide will help you get started with cloninator in just a few minutes.

Step 1: Create Configuration Directory

mkdir -p ~/.config/cloninator

Step 2: Create Your First Configuration

Create a file at ~/.config/cloninator/config.yaml:

/root: ~/projects

personal:
    myproject:
        /remotes:
            - name: origin
              url: git@github.com:user/myproject.git

Replace user/myproject with your actual GitHub username and repository.

Step 3: Clone Your Repositories

cloninator clone

You should see output like:

🟢 Cloning git@github.com:user/myproject.git at ~/projects/personal/myproject...

Step 4: Verify

Check that your repository was cloned:

ls ~/projects/personal/myproject
cd ~/projects/personal/myproject
git remote -v

What's Next?