Skip to content

Commit ab9277e

Browse files
committed
Update docs
1 parent 153b4ad commit ab9277e

1 file changed

Lines changed: 14 additions & 7 deletions

File tree

docs/gettingstarted.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,31 @@ cd myapp
1111
```
1212

1313
<details>
14-
<summary>Recommended: Click here to see how to change this clone to point "origin" to your own hosted repository</summary>
14+
<summary>Click here to see how to change this clone to point "origin" to your own hosted repository (Recommended)</summary>
15+
16+
Rename "origin" to "upstream":
1517

1618
```sh
1719
git remote rename origin upstream
18-
git remote add origin https://github.com/yourname/myapp
1920
```
2021

21-
Now you can push/pull to your own repo as normal:
22+
This way you can still upgrade to a more recent SuperStack with:
2223

2324
```sh
24-
git push origin head
25-
git pull
25+
git pull upstream main
2626
```
2727

28-
Or upgrade to a more recent SuperStack:
28+
Add your own code repository:
2929

3030
```sh
31-
git pull upstream main
31+
git remote add origin https://github.com/yourname/myapp
32+
```
33+
34+
Now you can pull/push to your own repo as normal:
35+
36+
```sh
37+
git pull
38+
git push origin head
3239
```
3340

3441
</details>

0 commit comments

Comments
 (0)