Your First Codicle

A quick start guide to creating your first repository

Let's create your first Codicle (repository) on CUEBES. This guide walks you through creating a new repository and making your first commit.

Creating a New Codicle

1. Go to Your Codicles

Click on "Code" in the navigation menu, then click the "New Codicle" button.

2. Fill in the Details

  • Name - Choose a name for your repository (e.g., "my-first-project")
  • Description - Add an optional description
  • Privacy - Choose your privacy level (Public, Private, Encrypted Private, or E2EE)

3. Initialize Options

You can optionally initialize your repository with:

  • A README file
  • A .gitignore template
  • A license file

4. Create!

Click "Create Codicle" and your repository is ready.

Cloning Your Codicle

To work with your Codicle locally, you'll need to clone it:

git clone https://cuebes.com/your-username/your-codicle.git
Note: For private repositories, you'll need a Personal Access Token to authenticate.

Making Your First Commit

# Navigate to your project
cd your-codicle

# Create a file
echo "# My First Project" > README.md

# Stage the file
git add README.md

# Commit
git commit -m "Initial commit"

# Push to CUEBES
git push origin main

What's Next?