01
언제 사용하는가
git 작업 흐름 실무 방법을 정리합니다.
코드 변경이 필요한 경우 사용하고, 커밋, 브랜치, 충돌 해결 또는 여러 병렬 스트림에서 작업을 조직해야 할 때 사용합니다.
릴리스 자르기, 세미 앵크 버전 증가 선택, 태깅 및 체인지로그 작성 시에도 사용합니다.
02
따라 하는 방법
- Git is your safety net. Treat commits as save points, branches as sandboxes, and history as documentation. With AI agents generating code at high speed, disciplined version control is the mechanism that keeps changes manageable, reviewable, and reversible.을 실행합니다.
- git log --oneline을 실행합니다.
- git commit -m "refactor: extract validation logic to shared utility"을 실행합니다.
- git commit -m "feat: add phone number validation to registration"을 실행합니다.
03
설치 방법
npx skills add installs: 14422 --skill git-workflow-and-versioning