-
-
Save trevershick/91df1e0df8731a7d706b to your computer and use it in GitHub Desktop.
svn log, one line per commit
This file contains 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
#!/usr/bin/awk -f | |
# Convert the "svn log" output into a one liner format, which is easier to grep | |
# or use in scripts. Pipe "svn log" into this script | |
# When we get a line that starts with a revision number, put the data in variables | |
/^r[0-9]+/ { | |
rev=$1 | |
user=$3 | |
date=$5 | |
time=$6 | |
lines=13 | |
} | |
# Anything that isn't a revision line, a separator line or an empty line | |
# will be part of the commit message. Concatenate these into the comment variable | |
! (/^r[0-9+]/ || /^-+$/ || /^$/) { | |
comment = comment $0 | |
} | |
# With every separator line, output what we stored before and reset the comment variable | |
# To skip the first line we also check if we've already stored a revision | |
/^-+$/ && rev { | |
printf "%-7.7s | s%-25.25s | %-10.10s %-8.8s | %s \n", rev, user, date, time, comment; | |
comment = "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fixed width output. very easy to read.
svn log | svn_short_log