Home > Back-end >  Get full history of changes
Get full history of changes

Time:04-05

For some legal reasons I need to show all of the contributions that I've made to a projet.

Is there a way, using only the local git to see all of the diff of all files in between each commits? Or other informations like the total number of changes or lines of code.

At the moment I only have a list of commits with git logs.

CodePudding user response:

If you want to see all commits created by you and what change they contain compared to their parent commit, you can simply filter the by author name and have it show the commit patches:

git log --author=youremail --patch --all
  • Related