11. REVISE(Update와 비슷하나 문서의 개정이 있을 때 주로 사용)
📍 Revise A (= A 문서를 개정합니다.)
Revise deprecation semverness info in Collaborator Guide12. CORRECT(주로 문법의 오류나 타입의 변경, 이름 변경 등에 사용)
📍 Correct A (= A를 고칩니다.)
Correct grammatical error in BUILDING.md
Correct parameters, return types in crypto.md13. ENSURE(무엇이 확실하게 보장받는다는 것을 명시)
if 구문처럼 조건을 확실하게 주었을 때에도 사용 될 수 있으며, ‘Make sure’도 같은 용도로 사용될 수 있다.
📍 Ensure A (= A가 확실히 보장 되도록 수정했습니다.)
Ensure quiet always takes precedence
Ensure cookies with illegal characters are not sent to okhttp14. PREVENT(특정한 처리를 못하게 막았을 때 사용)
📍 Prevent A (= A하지 못하게 막습니다.)
Prevent multiple connection errors
Prevent constructing console methods📍 Prevent A from B (= A를 B하지 못하게 막습니다.)
Prevent event handlers from receiving extra argument in development.15. AVOID(‘Prevent’는 못하게 막지만, ‘Avoid’는 회피할때 사용)
if 구문으로 특정한 동작을 제외시키는 경우에도 사용가능.
📍 Avoid A (= A를 회피합니다.)
Avoid flusing uninitialized traces
Avoid overrun on UCS-2 string write📍 Avoid A if B, Avoid A when B (= B인 상황에서 A를 회피합니다.)
Avoid input validation warning from browsers when changing type.
Avoid double reload event when reloading JS16. MOVE(코드의 이동이 있을 때 사용)
📍 Move A to B, Move A into B (= A를 B로 옮깁니다.)
Move async hooks trace events setup to pre_execution.js
Move initialization of node-report into pre_execution.js17. RENAME(이름 변경이 있을 때 사용)
📍 Rename A to B (= A를 B로 이름 변경합니다.)
Rename node-report to report
Rename location to trigger18. ALLOW(Make와 비슷하지만, 허용을 표현할 때 사용)
📍 Allow A to B (= A가 B를 할 수 있도록 허용합니다.)
Allow the output filename to be a {Function}
Allow Node.js-like runtimes to identify as Node.js as well.19. ALLOW(검증 코드를 넣을 때 주로 사용)
📍 Verify A (= A를 검증합니다.)
Verify heap buffer allocations occur20. SET(변수 값을 변경하는 등의 작은 수정에 주로 사용)
📍 Set A to B (= A를 B로 설정합니다.)
set tls.DEFAULT_ECDH_CURVE to 'auto'21. PASS(파라메터를 넘기는 처리에 주로 사용)
📍 Pass A to B (= A를 B로 넘깁니다.)
Pass the response toolkit to the context function.출처 : ull.im 블로그 - 👉🏻 좋은 git commit 메시지를 위한 영어 사전 by Reid


