I have many local commits which contains several modified files.
I need to run a specific command on each file modified after pushing to the repository, and this has to be done on the client side itself.
How do I configure git to do the same?
git log --name-only --format="" --author xxxx origin/master..HEAD | sort | uniq
The above command gives me all my committed files but with path relative to my repo. I need either the absolute path from the root or one which is relative to my current directory.