Skip to content

Instantly share code, notes, and snippets.

@tclavier
Created July 24, 2017 07:27
Show Gist options
  • Save tclavier/b2991b7836fffbfdb99aa2946c2c5817 to your computer and use it in GitHub Desktop.
Save tclavier/b2991b7836fffbfdb99aa2946c2c5817 to your computer and use it in GitHub Desktop.
Find oldest line in git repo
#!/bin/bash
for file in $(find . -type f);
do
git blame --date=format:%Y%m%d $file
done | sed -e 's/.*\s\([0-9]\{8\}\)\s.*/\1/' | sort -r | tail
@milofultz
Copy link

milofultz commented Jan 26, 2025

I did some slight modifications to make sorting a bit easier. MacOS didn't like this exact configuration, so I just added the date to the start of each line. I also added the filepath to each line to make it easier to grok where the lines come from.

#!/bin/bash

# the `grep` call is to only match non-binary files
for file in $(find $1 -type f -not -path './node_modules/*' -not -path './.git/*' -exec grep -I -q . {} \; -print); do 
  # this is to only do a blame on files that are tracked
  git ls-files --error-unmatch "$file" &>/dev/null
  if [[ $? == 0 ]]; then
    git blame --date=format:%Y%m%d -f $file
  fi
# I made the `match` call only search for years that start with `20`, so needs modification if commits precede 2000
done | awk $'{ match($0, /20[0-2][0-9]{5}/); print substr($0, RSTART, RLENGTH) "\t" $0 }' | sort -r | tail

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment