@@ -95,10 +95,10 @@ Before you submit your Pull Request (PR) consider the following guidelines:
95
95
4 . In your forked repository, make your changes in a new git branch:
96
96
97
97
``` shell
98
- git checkout -b my-fix-branch develop
98
+ git checkout -b my-fix-branch main
99
99
```
100
100
101
- ### The default branch is develop!
101
+ ### The default branch is main
102
102
103
103
5 . Create your patch, ** including appropriate test cases** .
104
104
@@ -120,7 +120,7 @@ Before you submit your Pull Request (PR) consider the following guidelines:
120
120
git push origin my-fix-branch
121
121
```
122
122
123
- 10 . In GitHub, send a pull request to ` AnguHashBlog/angular:develop ` .
123
+ 10 . In GitHub, send a pull request to ` AnguHashBlog/angular-primeng:main ` .
124
124
125
125
** DO NOT** erase the provided PR template! It is intended for you to use, not to replace it with random text.
126
126
@@ -140,10 +140,10 @@ After your pull request is merged, you can safely delete your branch and pull th
140
140
git push origin --delete my-fix-branch
141
141
```
142
142
143
- - Check out the develop branch:
143
+ - Check out the main branch:
144
144
145
145
``` shell
146
- git checkout develop -f
146
+ git checkout main -f
147
147
```
148
148
149
149
- Delete the local branch:
@@ -152,10 +152,10 @@ After your pull request is merged, you can safely delete your branch and pull th
152
152
git branch -D my-fix-branch
153
153
```
154
154
155
- - Update your local ` develop ` with the latest upstream version:
155
+ - Update your local ` main ` with the latest upstream version:
156
156
157
157
``` shell
158
- git pull --ff upstream develop
158
+ git pull --ff upstream main
159
159
```
160
160
161
161
## Coding Rules
0 commit comments