From f268f17cc7df18c67538ee786de562a73b3aa032 Mon Sep 17 00:00:00 2001 From: Eric Lavigne Date: Mon, 20 Oct 2025 23:31:17 -0600 Subject: [PATCH] =?UTF-8?q?SERVER-112625:=20Update=20urls=20for=20clones?= =?UTF-8?q?=20to=20use=20the=20internal=2010gen=20urls=20=E2=80=A6=20(#428?= =?UTF-8?q?49)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitOrigin-RevId: b83e0e91d0eaba9b17ffd0c376a2646ffe734c92 --- docs/devcontainer/faq.md | 2 +- docs/devcontainer/getting-started.md | 32 ++++++++++++++++++++-------- docs/devcontainer/troubleshooting.md | 2 +- 3 files changed, 25 insertions(+), 11 deletions(-) diff --git a/docs/devcontainer/faq.md b/docs/devcontainer/faq.md index b4b28e656aa..2d6c655e134 100644 --- a/docs/devcontainer/faq.md +++ b/docs/devcontainer/faq.md @@ -36,7 +36,7 @@ Report issues to help improve it for everyone! **You can use:** -- ✅ **SSH** (recommended): `git@github.com:mongodb/mongo.git` +- ✅ **SSH** (recommended): `git@github.com:10gen/mongo.git` - Pros: More secure, no password prompts, required for pushing code - Requires: SSH keys configured with GitHub - ✅ **HTTPS**: `https://github.com/mongodb/mongo.git` diff --git a/docs/devcontainer/getting-started.md b/docs/devcontainer/getting-started.md index fdc92f58fb8..787627a34b8 100644 --- a/docs/devcontainer/getting-started.md +++ b/docs/devcontainer/getting-started.md @@ -195,17 +195,31 @@ For **optimal performance**, especially on macOS, clone the repository directly 3. **Enter Repository URL** - ``` - git@github.com:mongodb/mongo.git - ``` +##### For use with the internal mongodb repo: - Or use HTTPS: +``` +git@github.com:10gen/mongo.git +``` - ``` - https://github.com/mongodb/mongo.git - ``` +Or use HTTPS: - > **Tip**: SSH URLs are recommended if you have SSH keys configured +``` +https://github.com/mongodb/mongo.git +``` + +##### For use with the public mongodb repo: + +``` +git@github.com:mongodb/mongo.git +``` + +Or use HTTPS: + +``` +https://github.com/mongodb/mongo.git +``` + +> **Tip**: SSH URLs are recommended if you have SSH keys configured 4. **Choose Volume Name** @@ -442,7 +456,7 @@ If you prefer to clone locally first (not recommended for best performance): 1. Clone the repository to your local machine: ```bash - git clone git@github.com:mongodb/mongo.git + git clone git@github.com:10gen/mongo.git cd mongo ``` diff --git a/docs/devcontainer/troubleshooting.md b/docs/devcontainer/troubleshooting.md index 0b69661ef77..09c67960c10 100644 --- a/docs/devcontainer/troubleshooting.md +++ b/docs/devcontainer/troubleshooting.md @@ -1074,7 +1074,7 @@ To isolate whether an issue is devcontainer-specific: ```bash # Clone locally -git clone git@github.com:mongodb/mongo.git +git clone git@github.com:10gen/mongo.git cd mongo # Try building without devcontainer