이안의 평일코딩

IDE-Jira 스마트커밋 이용하기 (time, workflow) 본문

Front-end/Project

IDE-Jira 스마트커밋 이용하기 (time, workflow)

이안92 2022. 1. 20. 13:46
반응형

스마트커밋을 이용하기 위해서는 git comment에서 commit시에 #comment 를 추가해주면 된다.

#comment <Jira 해당이슈에 댓글내용>
#comment 스마트커밋 테스트

 

https://support.atlassian.com/bitbucket-cloud/docs/use-smart-commits/

 

Use Smart Commits | Bitbucket Cloud | Atlassian Support

If you manage your project's repositories in Bitbucket or GitHub, or use Fisheye to browse and search your repositories, you can enable and use smart commits.

support.atlassian.com

 

만약, 스마트커밋을 이용했지만 Jira에서 코멘트가 달리지 않는다면?

깃과 Jira의 이메일이 상이하기 때문이므로 바꿔줘야한다.

// 연동된 깃 메일 확인
$git config --global user.email

// 깃과 jira의 메일이 상이하다면 수정
$git config --add --global user.email <바꿀메일>

 

워크플로우

#진행중 #comment 스마트 커밋 워크플로우 테스트
#완료 #comment 스마트 커밋 워크플로우 테스트

#comment앞에 #진행중, #완료를 이용하면 Jira의 칸반이 자동으로 옮겨진다.

 

시간 추적

#time <시간> #comment <댓글내용>
#time 1w 2d 4h 30m #comment 업무일지

위와 같이 #time을 이용하여 시간 추적도 가능하다.

반응형
Comments