Git (2)

사실 이걸 git 명령어로 확인할 일이 얼마나 있겠냐마는 다음에 혹시라도 또 쓸일이 있을까봐 기록용으로 남깁니다.

 

git shortlog -sne --since="01 Apr 2022" --before="01 May 2022" --no-merges

위 명령어를 이용하면 22년 4월 1일부터 22년 5월 1일 전까지, 즉, 4월 한달동안 merge 커밋을 제외한 실질적인 개발작업의 커밋건수를 확인할 수 있습니다.

결과는 아래와 같이 출력됩니다.

 53  홍길동 <gildong.hong@company.com>
 49  김철수 <cheolsoo.kim@company.com>
 31  임꺽정 <kj.lim@company.com>


 

💻 Programming

[Git] 태그 삭제하기 (removing git tag)

Git에서  태그 삭제하기


git tag -d {name of tag}

git push origin :refs/tags/{name of tag}


git tag -d 12345
git push origin :refs/tags/12345