How can I see all svn logs that I made on a specific date?
I’ve searched the web for this, but haven’t been able to find a solution.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To show entries for username on the 10th:
The SVN command gets commits in that date range
Breakdown of the sed command:
-n– Don’t automatically print.1p– Print the first line (the — header).2,/^-/d;– Remove everything from the second through the closing — header. This removes the first entry, which IIRC is the most recent commit as of midnight at the beginning of the day (i.e. it’s not actually in the range, and may be long in the past)./username/,/^-/p– Print everything starting from that username (a regex matching the user you’re interested in) to the closing — header (this acts repeatedly)