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
Copy file name to clipboardExpand all lines: docs/CONTRIBUTE.MD
+21-1Lines changed: 21 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,4 +10,24 @@ just fix
10
10
# How Can I Rewrite My Commit Message?
11
11
You can `git reset --soft upstream/main` and `git commit --forge`, this will merge your changes into one commit.
12
12
13
-
Or you also can use git rebase. But we will still merge them into one commit when it is merged.
13
+
Or you also can use git rebase. But we will still merge them into one commit when it is merged.
14
+
15
+
# Check Code Coverage
16
+
If you are developing on vscode, you can use vscode plugin [Coverage Gutters](https://marketplace.visualstudio.com/items?itemName=ryanluker.vscode-coverage-gutters)
17
+
18
+
And also need to install llvm-cov
19
+
```sh
20
+
cargo install cargo-llvm-cov
21
+
22
+
rustup component add llvm-tools-preview
23
+
```
24
+
25
+
If you are using goverage gutters plugin, add these config to let it know lcov output.
0 commit comments