본문 바로가기
IT/Git

Git Commit Message 정리

by DOSGamer 2022. 8. 26.
반응형

커밋구분 리스트

Copy of Untitled

커밋구분설명
FEAT(feature)개선 또는 기능 추가
BUG(Bug Fix)버그 수정
DOC(Documentation)문서 작업
TST(Test)테스트 추가/수정
BLD(Build)빌드 프로세스 관련 수정(yml)
PERF(Performance)속도 개선
CLN(Cleanup) 코드 정리 / 리팩토링

커밋메시지 예제

수정

Copy of Untitled

문장형식설명예제
Fix AA를 수정합니다Fix stat cacheFix changelog entryFix broken executor search path
Fix A in BB의 A를 수정합니다Fix calculation in process.uptime()Fix build warning in node_report.ccFix error condition in Verify::VerifyFinalFix typo in callback.ccFix duplicate symbols linker error in xcodeproj
Fix A which BFix A that BB절인 A를 수정합니다Fix incorrect type which makes animated gifs not loop forever on deviceFix crash that happens when a component throws an exception that contains a null message
Fix A to BFix A to be BB를 위해 A를 수정합니다Fix inability to remove 'Disabled' state from AccessibilityStatesFix HTTP connection timeout callback to be appropriately called
Fix A so that BA를 수정해서 B가 되었습니다Fix react-native init --help so that it doesn't return undefinedFix Android 28's inverted ScrollView so that momentum is in the proper direction
Fix A where BB처럼 발생하는 A를 수정했습니다Fix case where content of inline views didn't get relaid outFix case where inline view is visible even though it should have been truncatedFix issue where Image.resizeMode isn't respected while source is loading, resulting in unexpected padding
Fix A when BB일 때 발생하는 A를 수정했습니다Fix accidental showing of Modal when visible prop is undefined or nullFix crash when removing root nodes

추가

Copy of Untitled

문장형식설명예제
Add AA를 추가합니다Add ERR_INSPECTOR_COMMAND error
Add A for BB를 위해 A를 추가했습니다Add documentation for the defaultPort optionAdd example for setting Vary: Accept-Encoding header in zlib.mdAdd missing includes for vtune buildAdd test for dynamically enabling node.async_hooks tracingAdd test for InterpolatorTypeAdd devDependencies support for templates
Add A to BB에 A를 추가했습니다Add error description to Image onError callbackAdd displayName to ActivityIndicatorAdd deprecation notice to SwipeableListView

삭제

Copy of Untitled

문장형식설명예제
Remove AA를 삭제합니다Remove fallback cacheRemove unnecessary italics from child_process.mdRemove useless additionnal blur callRemove unneeded .gitignore entriesRemove unused variableRemove duplicated buffer negative allocation test
Remove A from BB에서 A를 삭제합니다Remove absolute path parameter from transformersRemove trailing slash from origin header if no port is specified

사용

Copy of Untitled

문장형식설명예제
Use AA를 사용합니다Use more stable cast where possible
Use A for BB에서 A를 사용합니다Use fake MessageEvent for port.onmessageUse object writer for thrown errorsUse ru_stime for system CPU calculationUse relative path for SCRIPTDIR
Use A to BB가 되도록 A를 사용합니다use common operations to define browser globalsuse triggerReport() to handle signalsuse PauseOnNextJavascriptStatement to implement --inspect-brk-node
Use A in BB에서 A를 사용합니다Use smart pointer in UDPWrap::OnSendUse same parameter name in node_report.ccUse TextLegend example in Android as wellUse main.jsbundle in iOS template for production buildUse new Metro configuration in react-native cli
Use A instead of BB 대신 A를 사용합니다Use babel runtime instead of relying on global babelHelpers and regenerator

리팩토링 / 단순화

Copy of Untitled

문장형식설명예제
Refactor AA를 수정합니다Refactor tick objects prune functionRefactor thread life cycle managementRefactor QueryWrap lifetime managementRefactor argument validationRefactor thread life cycle managementRefactor MockNativeMethods in Jest
Simplify AA를 단순화합니다Simplify code and remove obsolete checksSimplify the setup of async hooks trace eventsSimplify heap space iterationSimplify TriggerNodeReport()Simplify AliasedBuffer lifetime managementSimplify loop arithmetic in GetCPUInfo

업데이트 : Fix 와 달리 코드 보다 문서,리소스,라이브러리를 보완하는 개념으로 사용

Copy of Untitled

문장형식설명예제
Update A to BA를 B로 업데이트 합니다A를 B하기 위해 업데이트합니다Update acorn to 6.1.0Update repo docs to use HTTPSUpdate app icons to match recent Android releasesUpdate babelHelpers with Babel 7 support

차단

Copy of Untitled

문장형식설명예제
Prevent AA하지 못하게 막습니다Prevent multiple connection errorsPrevent constructing console methodsPrevent event loop blockingPrevent a potential error in event handling if Object.prototype is extended.Prevent an infinite loop when attempting to render portals with SSR.
Prevent A from BA를 B하지 못하게 막습니다Prevent event handlers from receiving extra argument in development.

코드이동

Copy of Untitled

문장형식설명예제
Move A to BMove A into BA를 B로 옮깁니다Move test-process-uptime to parallelMove function from header to source fileMove async hooks trace events setup to pre_execution.jsmove initialization of node-report into pre_execution.js

이름변경

Copy of Untitled

문장형식설명예제
Rename A to BA를 B로 이름 변경합니다Rename node-report to reportRename location to triggerRename node-report suite to report

Uploaded by N2T

반응형