Skip to content

Commit 72cdccd

Browse files
committed
docs: fix commands
1 parent 42013c8 commit 72cdccd

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

admin/RELEASE.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ Copy the resulting content into **CHANGELOG.md** and adjust the format to match
2424

2525
* Work off direct clones of the repos so the release branches persist for a time
2626
* Clone both **codeigniter4/CodeIgniter4** and **codeigniter4/userguide** and resolve any necessary PRs
27+
```console
28+
git clone [email protected]:codeigniter4/CodeIgniter4.git
29+
git clone [email protected]:codeigniter4/userguide.git
30+
```
2731
* Vet the **admin/** folders for any removed hidden files (Action deploy scripts *do not remove these*)
2832

2933
## CodeIgniter4
@@ -49,11 +53,11 @@ Copy the resulting content into **CHANGELOG.md** and adjust the format to match
4953
* Merge the PR then fast-forward `develop` to catch the merge commit
5054
* Update the next minor upgrade branch `4.x`
5155
```console
52-
git fetch upstream
56+
git fetch origin
5357
git checkout 4.x
54-
git merge upstream/4.x
55-
git merge upstream/develop
56-
git push upstream HEAD
58+
git merge origin/4.x
59+
git merge origin/develop
60+
git push origin HEAD
5761
```
5862
* Create a new Release:
5963
* Version: "v4.x.x"

0 commit comments

Comments
 (0)