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,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
1719git 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 >
You can’t perform that action at this time.
0 commit comments