Skip to content

Commit da6d0b8

Browse files
authored
Change clone command to use actual GitHub repo (#46)
* Change clone command to use actual GitHub repo Updated the clone command to use the actual repository URL. * Fix cloning command for sf-tutorial repository Corrected command for cloning repository from 'gh repo fork' to 'git clone'. * Fix git clone command in W3-run-your-factory.md Updated git clone command to include .git extension.
1 parent 765237d commit da6d0b8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

progression/W2-cloud-box-and-preflight.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Regardless of whether you choose to run the factory in our instructor-provided c
4646
cd $HOME && mkdir software-factory-intensive
4747
cd software-factory-intensive
4848
export SFI_PATH="$(pwd)"
49-
gh repo fork https://github.com/actual-software/sf-tutorial.git --clone
49+
git clone https://github.com/actual-software/sf-tutorial.git
5050
cd sf-tutorial/bootstrap
5151
```
5252

progression/W3-run-your-factory.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export SFI_PATH="$(pwd)"
133133
cat <<EOF >> ~/.bashrc
134134
export SFI_PATH="$SFI_PATH"
135135
EOF
136-
gh repo clone <your-github-handle>/sf-tutorial
136+
git clone https://github.com/actual-software/sf-tutorial.git
137137
```
138138

139139
No `deps.sh` step here. The box already carries `gc`, `bd` and `dolt` at the pinned versions, which is what preflight confirmed a moment ago, and it signed in to GitHub during your first-run login, so the rig push in [step 6](#6-put-the-rig-on-github) needs nothing further from you.

0 commit comments

Comments
 (0)