-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CodeCamp2023-552] Complete Chinese and English documents advanced_guides/structures.md #1982
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @MING-ZCH , thanks for your contribution. Please install pre-commit hook
via pip install pre-commit
before creating commit in order to fix lint error automatically.
Since you have already create a commit and PR, you can use the following commands to roll back:
git reset --soft HEAD^ # reset commit and remain changes
pip install pre-commit # install pre-commit hook package
pre-commit install # install pre-commit hook for current repo
git commit -m "xxxxx" # create commit
git push -f <repository> <refspec> # -f for force push
Or, you can run the following commands to run pre-commit hook manually, and then add a new commit for format fixing:
pip install pre-commit # install pre-commit hook package
pre-commit install # install pre-commit hook for current repo
pre-commit run --all-files # run pre-commit checking for all file
git add xxx # add changed files
git commit -m "xxx" # create new commit
git push <repository> <refspec> # push to remote
@MING-ZCH This seems a network error. You can set proxy for your command line. |
[CodeCamp2023-552] Complete Chinese and English documents advanced_guides/structures.md
1b38e52
to
2625855
Compare
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## main #1982 +/- ##
=======================================
Coverage 80.73% 80.73%
=======================================
Files 424 424
Lines 29109 29109
Branches 4502 4502
=======================================
Hits 23502 23502
Misses 4630 4630
Partials 977 977
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
[CodeCamp2023-552] Complete Chinese and English documents advanced_guides/structures.md
Motivation
Task#552: Complete Chinese and English documents advanced_guides/structures.md
Modification
Complete Chinese and English documents advanced_guides/structures.md
BC-breaking (Optional)
No
Use cases (Optional)
No
Checklist
Before PR:
I have read and followed the workflow indicated in the CONTRIBUTING.md to create this PR.
Pre-commit or linting tools indicated in CONTRIBUTING.md are used to fix the potential lint issues.
Bug fixes are covered by unit tests, the case that causes the bug should be added in the unit tests.
New functionalities are covered by complete unit tests. If not, please add more unit test to ensure the correctness.
The documentation has been modified accordingly, including docstring or example tutorials.
After PR:
If the modification has potential influence on downstream or other related projects, this PR should be tested with some of those projects, like MMDet or MMCls.
CLA has been signed and all committers have signed the CLA in this PR.