How to extract all the code committed by a certain author to a text file in Git?
If there is a repository and I want to have all code of a certain committer over the history of the repo from its start from its master branch in one text file.
Try to use git log --author="Jon"
and it will show the commit message and the date of all the commits of him but without the code itself, I need this information along with the code to be outputted in one text file. I hope this made what I want clear.