Blair Zajac wrote:
This is normal behavior.

Log won't show anything if there are no changes the location where log is running. This is expected behavior, because if you're sitting in trunk and run svn log, you don't want to see log messages for changes in any branches.
...
If you want to see the log message for any revision, you need to use the root of the Subversion repository. That's easy to get from a script if your client is 1.3.x:

svn info . | grep '^Repository Root:' | awk '{print $3}'

Doh!

Thanks.

_______________________________________________
Rails-core mailing list
Rails-core@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-core

Reply via email to