Skip to content

adrG2/software-craftsman-notebook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Craftsmanship notes

Index

Tools

Comando para ver los ficheros más modificados de un proyecto

git log --pretty=format: --name-only | sort | uniq -c | sort -rg | grep '.ts' | head -10

This git command finds the 50 hotspots of your legacy codebase:

git log --format=format: --name-only --since=12.month| egrep -v '^$' | sort | uniq -c | sort -nr | head -50

About

Software craftsmanship notes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published