At times I want to revisit a change I committed to SVN a short while back, but don't recall the specific files involved or the revision number. So I would like to see a list of recent commit messages, ideally including the files included in each commit.
I picture going to the root of my working copy and entering something like the following to see the messages and files associated with the most recent 5 commits:
svn log -l5 -v *
Unfortunately, this command requires a single target, and won't accept '*'. I know SVN has the information I want. Is there a simple way to retrieve it?
You can use svn log -l5 -v <URL of your repository>
. svn info
can be used to get the root URL for the repository where your working copy is connected to.