Home > Software engineering >  Shell script to print Git activity by date
Shell script to print Git activity by date

Time:07-15

I'm trying to adapt this code snippet to go through a Git repo and print out by date the number of insertions, deletions and commits. My adaptation is as follows:

dates=$(git log --date=short --pretty=format:           
  • Related