본문 바로가기
BackEnd/Server

[Git] 프로젝트 내부 코드 라인 수 조회하기

by 푸고배 2021. 5. 27.

현재 프로젝트 내부 전체 파일의 코드 라인 수를 조회하고 싶은 경우가 있다.

git 명령어를 통해 프로젝트 내부 전체 코드 라인 수를 조회해본다.

우선 프로젝트 내부로 이동해서 아래와 같은 명령어를 입력한다.

 

현재 폴더 내부에 있는 모든 파일의 코드 라인 수 합계 :

git ls-files | xargs cat | wc -l

결과 값은 아래와 같은 숫자로 표시된다.

 

현재 폴더 내부에 있는 파일 마다의 코드 라인 수 조회 & 총 라인 수 합계 :

git ls-files | xargs wc -l

왼쪽에는 라인 수가 오른쪽에는 파일명이, 최하단에는 total 라인수가 표시된다.

 

참고자료 :

 

Count number of lines in a git repository

How would I count the total number of lines present in all the files in a git repository? git ls-files gives me a list of files tracked by git. I'm looking for a command to cat all those files.

stackoverflow.com

 

반응형

댓글