Skip to content

Commit b4f2525

Browse files
committed
rm git-neco command
1 parent f002bd1 commit b4f2525

1 file changed

Lines changed: 12 additions & 6 deletions

File tree

RELEASE.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@ It should look like:
3939
$ echo $VERSION
4040
```
4141

42-
2. Make a new branch from the latest `main` with `git neco dev bump-v$VERSION`.
42+
2. Make a new branch from the latest `main` with `git checkout -b bump-v$VERSION`.
4343

4444
```console
45-
$ git neco dev "bump-v$VERSION"
45+
$ git checkout main
46+
$ git pull
47+
$ git checkout -b "bump-v$VERSION"
4648
```
4749

4850
3. Update version strings in `kustomization.yaml` and `version.go`.
@@ -51,7 +53,8 @@ It should look like:
5153

5254
```console
5355
$ git commit -a -m "Bump version to v$VERSION"
54-
$ git neco review
56+
$ git push -u origin HEAD
57+
$ gh pr create -f
5558
```
5659

5760
6. Merge the new pull request.
@@ -89,10 +92,12 @@ This will prevent the MOCO version from going up just by modifying the Helm Char
8992
$ echo $APPVERSION $CHARTVERSION
9093
```
9194

92-
2. Make a new branch from the latest `main` with `git neco dev bump-chart-v$CHARTVERSION`.
95+
2. Make a new branch from the latest `main` with `git checkout -b bump-chart-v$CHARTVERSION`.
9396

9497
```console
95-
$ git neco dev "bump-chart-v$CHARTVERSION"
98+
$ git checkout main
99+
$ git pull
100+
$ git checkout -b "bump-chart-v$CHARTVERSION"
96101
```
97102

98103
3. Update version strings:
@@ -108,7 +113,8 @@ This will prevent the MOCO version from going up just by modifying the Helm Char
108113

109114
```console
110115
$ git commit -a -m "Bump chart version to v$CHARTVERSION"
111-
$ git neco review
116+
$ git push -u origin HEAD
117+
$ gh pr create -f
112118
```
113119

114120
6. Merge the new pull request.

0 commit comments

Comments
 (0)