How many lines of code modified during a time period?

前端 未结 8 1255
感情败类
感情败类 2020-12-25 14:04

I have been tasked with figuring out how many lines of code I\'ve written this year. Not very exciting for a number of reasons, but it seems like it could make a nice SO qu

8条回答
  •  南方客
    南方客 (楼主)
    2020-12-25 14:33

    If you are using subversion you can use the svn log command with the --xml switch and you can pull the lines of code from there. You can see the options of svn log using svn help log. Since your output is xml you can run through this xml and aggregate your line counts in code and go from there.

提交回复
热议问题