@@ -95,10 +95,10 @@ Before you submit your Pull Request (PR) consider the following guidelines:
95954 .  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
1031035 .  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/analog-material:develop  ` .
123+ 10 .  In GitHub, send a pull request to ` AnguHashBlog/analog-material: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