You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. 添加maven最低版本限制
3. 添加弱网环境下git的操作流程
for english
1. Correct the JDK version indication error in the documentation: The minimum required JDK version is 17, not 1.8.
2. Add the minimum version requirement for Maven.
3. Add the Git operation process for low - network - quality environments.
Copy file name to clipboardexpand all lines: blog/Start-SourceCode-Analysis-Start-Demo-for-Contributor.md
+16-1
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,9 @@ As a first-time developer in the `Shenyu` community, I encountered some "Pitfall
13
13
14
14
## Environmental Preparation
15
15
16
-
- Correct local installation of `JDK1.8+`
16
+
- Correct local installation of `JDK17+`
17
17
- Properly install `Git` locally
18
+
- Correctly install Maven `3.6.3+`
18
19
- Choose a development tool, this article uses `IDEA` as an example
19
20
20
21
## ShenYu Backend Startup Guide
@@ -91,6 +92,20 @@ Maven is a cross-platform project management tool . As the Apache organization's
91
92
git config --global core.longpaths true
92
93
```
93
94
95
+
Tips: If you encounter the following error or have network issues preventing you from pulling all the code:
96
+
97
+
``` tex
98
+
RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8) 2057 bytes of body are still expected fetch-pack: unexpected disconnect while reading sideband packet early EOF fetch-pack: invalid index-pack output
99
+
```
100
+
101
+
You can execute the following commands to first pull a single version of the code, then fetch the full code:
RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8) 2057 bytes of body are still expected fetch-pack: unexpected disconnect while reading sideband packet early EOF fetch-pack: invalid index-pack output
0 commit comments