Skip to content

Commit 603a0cc

Browse files
Merge pull request #81 from AnguHashBlog/develop
changing default branch to main
2 parents a5bcb13 + 791de0a commit 603a0cc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ Before you submit your Pull Request (PR) consider the following guidelines:
9595
4. In your forked repository, make your changes in a new git branch:
9696

9797
```shell
98-
git checkout -b my-fix-branch develop
98+
git checkout -b my-fix-branch main
9999
```
100100

101-
### The default branch is develop!
101+
### The default branch is main
102102

103103
5. Create your patch, **including appropriate test cases**.
104104

@@ -120,7 +120,7 @@ Before you submit your Pull Request (PR) consider the following guidelines:
120120
git push origin my-fix-branch
121121
```
122122

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`.
124124

125125
**DO NOT** erase the provided PR template! It is intended for you to use, not to replace it with random text.
126126

@@ -140,10 +140,10 @@ After your pull request is merged, you can safely delete your branch and pull th
140140
git push origin --delete my-fix-branch
141141
```
142142

143-
- Check out the develop branch:
143+
- Check out the main branch:
144144

145145
```shell
146-
git checkout develop -f
146+
git checkout main -f
147147
```
148148

149149
- Delete the local branch:
@@ -152,10 +152,10 @@ After your pull request is merged, you can safely delete your branch and pull th
152152
git branch -D my-fix-branch
153153
```
154154

155-
- Update your local `develop` with the latest upstream version:
155+
- Update your local `main` with the latest upstream version:
156156

157157
```shell
158-
git pull --ff upstream develop
158+
git pull --ff upstream main
159159
```
160160

161161
## Coding Rules

0 commit comments

Comments
 (0)