티스토리 뷰

반응형

간혹 내 프로젝트의 전체 코드 라인 수가 궁금할 때가 있을 것이다. (나만 그런가...?)

 

그럴땐 Git 명령어를 통해서 확인할 수 있다. (아쉽게도 Github에서는 기능을 제공하지 않는 것 같다.)

 

다음 StackOverflow 글을 참고했다.

https://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository

 

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

 

# 보는 법

확인하고 싶은 프로젝트 경로로 이동하여 우클릭 후 Git Bash를 열어준다.

윈도우 10이상 이용자 중 저 옵션이 안 보이면 더 많은 옵션보기를 선택하면 된다.

 

터미널에 다음 명령어를 입력한다.

git ls-files | xargs wc -l

 

이렇게 맨 마지막 줄에 전체 몇 라인인지 출력된다.

 

반응형
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크