Skip to content

fix: Correct clone URL from cortex-distro to cx-distro#60

Open
mikejmorgan-ai wants to merge 1 commit intomainfrom
fix/correct-clone-url
Open

fix: Correct clone URL from cortex-distro to cx-distro#60
mikejmorgan-ai wants to merge 1 commit intomainfrom
fix/correct-clone-url

Conversation

@mikejmorgan-ai
Copy link
Copy Markdown
Member

@mikejmorgan-ai mikejmorgan-ai commented Feb 4, 2026

Problem

The README Quick Start section still references cortex-distro.git — the old repo name before the CX rebrand.

Solution

Updated all git clone URLs from cortex-distro to cx-distro.

Validation

  • git clone https://github.com/cxlinux-ai/cx-distro.git works correctly
  • No other references to cortex-distro remain in README

Summary by CodeRabbit

  • Documentation
    • Updated the Quick Start setup instructions with the correct repository URL.

The Quick Start section referenced the old cortex-distro repository name.
Updated to the current cx-distro repo URL.
@mikejmorgan-ai mikejmorgan-ai requested a review from a team as a code owner February 4, 2026 10:07
@gemini-code-assist
Copy link
Copy Markdown

Summary of Changes

Hello @mikejmorgan-ai, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request addresses an outdated reference in the README.md file. It ensures that new users attempting to clone the repository will use the correct and current repository name, thereby preventing potential setup issues and improving the accuracy of the documentation.

Highlights

  • README Update: The git clone URL in the Quick Start section of README.md has been updated to reflect the new repository name, changing from cortex-distro.git to cx-distro.git.
Changelog
  • README.md
    • Updated the git clone command in the Quick Start guide to use the correct repository name, cx-distro.git, instead of the deprecated cortex-distro.git.
Activity
  • No specific activity (comments, reviews, progress) has been recorded for this pull request yet.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Feb 4, 2026

📝 Walkthrough

Walkthrough

The README.md documentation was updated to reflect a repository URL change in the Quick Start section, replacing the old repository URL with the new one for the distro project.

Changes

Cohort / File(s) Summary
Documentation
README.md
Updated Quick Start clone command repository URL from cortex-distro.git to cx-distro.git.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~1 minute

Poem

🐰 A URL hops along with grace,
From cortex to cx, a simpler place,
The clone command now points the way,
To the distro that'll brighten your day!

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: correcting an outdated clone URL in the README from the old repository name to the new one.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch fix/correct-clone-url

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

The pull request successfully updates the git clone URL in the README.md file from cortex-distro.git to cx-distro.git. This change correctly reflects the new repository name and ensures that the quick start instructions are accurate. The solution addresses the problem as described in the pull request, and no other instances of the old cortex-distro name were found that needed updating, except for the cortex repository reference which is distinct and correct.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In `@README.md`:
- Line 21: Search and replace all hardcoded occurrences of the old repo name
"cortex-distro" to "cx-distro" across the codebase; specifically update
SUPPORT_URL and BUG_REPORT_URL in src/upgrade.sh, src/build.sh, and
src/mods/43-etc-branding-mod/install.sh, update all links inside the HTML files
under src/mods/22-ubiquity-patch/slides/ (English + localized files), and update
package metadata in packages/cortex-branding/ (control, templates, copyright) to
point to the new repository; after edits, verify no remaining references with a
global grep for "cortex-distro" and ensure URL formatting is preserved.

```bash
# Clone repository
git clone https://github.com/cxlinux-ai/cortex-distro.git
git clone https://github.com/cxlinux-ai/cx-distro.git
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Search for any remaining references to cortex-distro in the repository
rg -i "cortex-distro" --type-not md

Repository: cxlinux-ai/cx-distro

Length of output: 13407


Update all hardcoded references to the old repository name across the codebase.

The repository rename from cortex-distro to cx-distro requires updates in multiple critical files:

  • Shell scripts: src/upgrade.sh, src/build.sh, src/mods/43-etc-branding-mod/install.sh contain SUPPORT_URL and BUG_REPORT_URL pointing to the old repository
  • Installation slides: src/mods/22-ubiquity-patch/slides/ includes English and 17+ localized HTML files with links to the old repository
  • Package configuration: packages/cortex-branding/ (control, templates, copyright) references the old repository

Users will be directed to the incorrect repository for support and bug reports if these are not updated.

🤖 Prompt for AI Agents
In `@README.md` at line 21, Search and replace all hardcoded occurrences of the
old repo name "cortex-distro" to "cx-distro" across the codebase; specifically
update SUPPORT_URL and BUG_REPORT_URL in src/upgrade.sh, src/build.sh, and
src/mods/43-etc-branding-mod/install.sh, update all links inside the HTML files
under src/mods/22-ubiquity-patch/slides/ (English + localized files), and update
package metadata in packages/cortex-branding/ (control, templates, copyright) to
point to the new repository; after edits, verify no remaining references with a
global grep for "cortex-distro" and ensure URL formatting is preserved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant