Update logging with PowerShell last file date script

This commit is contained in:
James Skemp 2019-10-17 16:08:22 +00:00
parent 107d32000e
commit 16489b747c
1 changed files with 3 additions and 0 deletions

View File

@ -73,4 +73,7 @@ git shortlog -s -n
# View mostly commonly modified files, based upon commits.
git log --pretty=format: --name-only | sort | uniq -c | sort -rg | head -10
# View all files in Git with the date the file was last touched in Git. PowerShell.
git ls-tree -r --name-only HEAD | ForEach-Object { "$(git log -1 --format="%ai" -- "$_")`t$_" }
```