File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ This repo is the **public tooling layer**. Your team maintains a separate **priv
1111** macOS (no git yet):**
1212
1313``` bash
14- curl -fsSL https://raw.githubusercontent.com/YOUR_ORG /dev-setup/main/bootstrap.sh | bash
14+ curl -fsSL https://raw.githubusercontent.com/sa5mmm7 /dev-setup/main/bootstrap.sh | bash
1515```
1616
1717** Windows** — WSL2 must be set up first. In PowerShell (as Administrator):
@@ -23,13 +23,13 @@ wsl --install
2323Restart, open Ubuntu from the Start menu, then run inside WSL2:
2424
2525``` bash
26- curl -fsSL https://raw.githubusercontent.com/YOUR_ORG /dev-setup/main/bootstrap.sh | bash
26+ curl -fsSL https://raw.githubusercontent.com/sa5mmm7 /dev-setup/main/bootstrap.sh | bash
2727```
2828
2929** Already have git:**
3030
3131``` bash
32- git clone https://github.com/YOUR_ORG /dev-setup.git ~ /dev-setup
32+ git clone https://github.com/sa5mmm7 /dev-setup.git ~ /dev-setup
3333cd ~ /dev-setup
3434cp config/team.env.example config/team.env
3535# Edit config/team.env with your team's values, then:
Original file line number Diff line number Diff line change 22# Bootstrap a new dev machine before the onboarding repo is cloned.
33#
44# Usage (once the repo is public):
5- # curl -fsSL https://raw.githubusercontent.com/YOUR_ORG /dev-setup/main/bootstrap.sh | bash
5+ # curl -fsSL https://raw.githubusercontent.com/sa5mmm7 /dev-setup/main/bootstrap.sh | bash
66#
77# What this does:
88# 1. Installs git if missing (Xcode CLT on macOS, apt on WSL2)
99# 2. Clones the onboarding repo to ~/dev-setup
1010# 3. Runs run-onboarding.sh
1111set -euo pipefail
1212
13- REPO_URL=" https://github.com/YOUR_ORG /dev-setup.git"
13+ REPO_URL=" https://github.com/sa5mmm7 /dev-setup.git"
1414CLONE_DIR=" ${HOME} /dev-setup"
1515
1616# --- helpers ---
@@ -34,7 +34,7 @@ if ! command -v git >/dev/null 2>&1; then
3434 echo " Xcode Command Line Tools (this includes git)."
3535 echo " "
3636 echo " After the install completes, run this script again:"
37- echo " curl -fsSL https://raw.githubusercontent.com/YOUR_ORG /dev-setup/main/bootstrap.sh | bash"
37+ echo " curl -fsSL https://raw.githubusercontent.com/sa5mmm7 /dev-setup/main/bootstrap.sh | bash"
3838 echo " "
3939 # Trigger the macOS install dialog
4040 git --version 2> /dev/null || true
You can’t perform that action at this time.
0 commit comments