1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

husky: add Korean translation (#11176)

This commit is contained in:
HoJeong Im 2023-10-23 14:07:24 +09:00 committed by GitHub
parent d0c489989b
commit 2680424f7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

28
pages.ko/common/husky.md Normal file
View file

@ -0,0 +1,28 @@
# husky
> 네이티브 Git 훅을 쉽게 만들었습니다.
> 더 많은 정보: <https://typicode.github.io/husky>.
- 현재 폴더에 Husky를 설치:
`husky install`
- Husky를 특정 폴더에 설치:
`husky install {{경로/대상/폴더}}`
- 특정 명령을 Git의 `pre-push` 훅으로 설정:
`husky set {{.husky/pre-push}} "{{명령어}} {{명령어_인자}}"`
- 현재 `pre-commit` 훅에 특정 명령을 추가:
`husky add {{.husky/pre-commit}} "{{명령어}} {{명령어_인자}}"`
- 현재 폴더에서 Husky 훅 제거:
`husky uninstall`
- 도움말 표시:
`husky`