-
-
Save bytefade/a3d9bb3353ee325bc0c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Local Dates: | |
git log --date=local --pretty=format:"%h%x09%an%x09%ad%x09%s" > commits.local.tsv.txt | |
# ISO Dates: | |
git log --date=iso --pretty=format:"%h%x09%an%x09%ad%x09%s" > commits.iso.tsv.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
and if you had to do it for severals repo :
for each repo
git log --date=local --pretty=format:"%h%x09%an%x09%ad%x09%s" > ~/commits.local-<REPO_NAME>.tsv.txt
then to have them in a single file :
cat ~/commits.local-* > ~/all-repos-commits.tsv.txt