You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by velocity <ve...@gmail.com> on 2005/03/30 08:07:19 UTC

newbie: getting log of updates for a specific directory in the repository

Hi. Suppose I have a repository with 3 active projects. However, I'm
only interested in getting the changes or log messages for a
particular project. So...

/
|--ProjA
|
|--ProjB
|
\--ProjC

what command can I use to say 'show me only the changes made in ProjA' 

I'd appreciate a point in the right direction. I'm willing to read and
learn, just need a nudge in the right direction.

We're actually thinking of having 3 separate repositories just so we
can be sure we can isolate the log messages. I think its the wrong
reason to have separate repositories so I need some help.

Thanks.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: newbie: getting log of updates for a specific directory in the repository

Posted by Aniruddha Apte <an...@gmail.com>.
Check out http://svnbook.red-bean.com/en/1.1/ch03s06.html#svn-ch-3-sect-6.1

You can view logs for as specific a repository path as you want. Or,
you can view logs for any path in your working copy. Just go to a
directory in your WC and do 'svn log'. This will give you log for that
directory.

On Wed, 30 Mar 2005 16:07:19 +0800, velocity <ve...@gmail.com> wrote:
> Hi. Suppose I have a repository with 3 active projects. However, I'm
> only interested in getting the changes or log messages for a
> particular project. So...
> 
> /
> |--ProjA
svn log http://server/repos/ProjA

> |
> |--ProjB
svn log http://server/repos/ProjA

> |
> \--ProjC
svn log http://server/repos/ProjA

> 
> what command can I use to say 'show me only the changes made in ProjA'
> 
> I'd appreciate a point in the right direction. I'm willing to read and
> learn, just need a nudge in the right direction.
> 
> We're actually thinking of having 3 separate repositories just so we
> can be sure we can isolate the log messages. I think its the wrong
> reason to have separate repositories so I need some help.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org