1 / 5

Development costs

Development costs. 2.6.0 proprietary = $612 million European union estimate 2.6.8 = $1.14 bil . Number of lines of code. find . -type f -not -regex './.git.*' | xargs cat | wc -l (find . -name *.[hcS] -not -regex './.git.*' | xargs cat | wc -l) . Number of files.

livi
Télécharger la présentation

Development costs

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Development costs • 2.6.0 proprietary = $612 million • European union estimate 2.6.8 = $1.14 bil

  2. Number of lines of code find . -type f -not -regex '\./\.git.*' | xargs cat | wc -l (find . -name *.[hcS] -not -regex '\./\.git.*' | xargs cat | wc -l)

  3. Number of files • find . -type f -not -regex '\./\.git/.*' | wc -l

  4. Number of commits • git-log --no-merges --pretty=oneline v2.6.(x-1)..v2.6.(x) | wc -l

  5. diffstat • ;git diff --shortstat v2.6.(x-1)..v2.6.(x)

More Related