How Can I get tags asoociated with a file

View: New views
7 Messages — Rating Filter:   Alert me  

How Can I get tags asoociated with a file

by marathiboy :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello,

I am new to svnkit and I need to get all the tags of a file which are in certain format. How can I achieve that?

Thanks

Shailesh

Re: How Can I get tags asoociated with a file

by Alexander Sinyushkin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello Shailesh,

Unfortunately, Subversion does not keep information about where files
were copied to during their life. But instead Subversion
tracks history of where a file has been copied from. Copy points can be
discovered with the 'log' command.

----
Alexander Sinyushkin,
TMate Software,
http://svnkit.com/ - Java [Sub]Versioning Library!



marathiboy wrote:
> Hello,
>
> I am new to svnkit and I need to get all the tags of a file which are in
> certain format. How can I achieve that?
>
> Thanks
>
> Shailesh
>  

---------------------------------------------------------------------
To unsubscribe, e-mail: svnkit-users-unsubscribe@...
For additional commands, e-mail: svnkit-users-help@...


Re: How Can I get tags asoociated with a file

by marathiboy :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


marathiboy wrote:
Hello,

I am new to svnkit and I need to get all the tags of a file which are in certain format. How can I achieve that?

Thanks

Shailesh
Thanks for the reply,

ok, in order to get log of a file, I need what are all the rev numbers of the file, correct? How do I get all the revisions ( numbers) of a file then?

Thanks again

Shailesh

Re: How Can I get tags asoociated with a file

by Alexander Sinyushkin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

You do not have to know all file revisions. It is enough to specify two
endpoints (revision)
for the log command to make it traverse file history. Take a look at
this article:
https://wiki.svnkit.com/Printing_Out_Repository_History

----
Alexander Sinyushkin,
TMate Software,
http://svnkit.com/ - Java [Sub]Versioning Library!



marathiboy wrote:

>
> marathiboy wrote:
>  
>> Hello,
>>
>> I am new to svnkit and I need to get all the tags of a file which are in
>> certain format. How can I achieve that?
>>
>> Thanks
>>
>> Shailesh
>>
>>    
>
> Thanks for the reply,
>
> ok, in order to get log of a file, I need what are all the rev numbers of
> the file, correct? How do I get all the revisions ( numbers) of a file then?
>
> Thanks again
>
> Shailesh
>  

---------------------------------------------------------------------
To unsubscribe, e-mail: svnkit-users-unsubscribe@...
For additional commands, e-mail: svnkit-users-help@...


SVNKit, SVN repositories and multi-threading question

by Orlin Stoyanov :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello,

I am new for SVNKit and have a question regarding usage of multiple
SVNRepository objects in several threads.So the question is:

Is it possible to have several parallel working SVNRepositories objects
over one and the same SVN repository location? I will instantiate one
SVNRepository object per thread. Will it be a problem if for example, I
have two threads and each one of them instantiates SVNRepository object  
to one and the same SVN repository location  and also both want to
commit or update date(any combination)?

Thanks
Orlin


__________ Information from ESET Smart Security, version of virus signature database 4378 (20090828) __________

The message was checked by ESET Smart Security.

http://www.eset.com



---------------------------------------------------------------------
To unsubscribe, e-mail: svnkit-users-unsubscribe@...
For additional commands, e-mail: svnkit-users-help@...


Re: SVNKit, SVN repositories and multi-threading question

by Semyon Vadishev :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello Orlin,

Here is the answer on your questions --
http://svnkit.com/kb/dev-guide-multithreaded-environment.html

Semen Vadishev,
TMate Software,
http://svnkit.com/ - Java [Sub]Versioning Library!
http://sqljet.com/ - Java SQLite Library!



Orlin Stoianov wrote:

> Hello,
>
> I am new for SVNKit and have a question regarding usage of multiple
> SVNRepository objects in several threads.So the question is:
>
> Is it possible to have several parallel working SVNRepositories
> objects over one and the same SVN repository location? I will
> instantiate one SVNRepository object per thread. Will it be a problem
> if for example, I have two threads and each one of them instantiates
> SVNRepository object  to one and the same SVN repository location  and
> also both want to commit or update date(any combination)?
>
> Thanks
> Orlin
>
>
> __________ Information from ESET Smart Security, version of virus
> signature database 4378 (20090828) __________
>
> The message was checked by ESET Smart Security.
>
> http://www.eset.com
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: svnkit-users-unsubscribe@...
> For additional commands, e-mail: svnkit-users-help@...
>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: svnkit-users-unsubscribe@...
For additional commands, e-mail: svnkit-users-help@...


Re: SVNKit, SVN repositories and multi-threading question

by Alexander Sinyushkin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello Orlin,

Yes, it's possible. The main thing is that you use one SVNRepository
object per each thread, so that you won't run into 'SVNRepository
objects are not reenterable'
exception. Synchronization between multiple clients accessing the same
repository is made by the backend itself, you do not have to worry about
that.

----
Alexander Sinyushkin,
TMate Software,
http://svnkit.com/ - Java [Sub]Versioning Library!



Orlin Stoianov wrote:

> Hello,
>
> I am new for SVNKit and have a question regarding usage of multiple
> SVNRepository objects in several threads.So the question is:
>
> Is it possible to have several parallel working SVNRepositories
> objects over one and the same SVN repository location? I will
> instantiate one SVNRepository object per thread. Will it be a problem
> if for example, I have two threads and each one of them instantiates
> SVNRepository object  to one and the same SVN repository location  and
> also both want to commit or update date(any combination)?
>
> Thanks
> Orlin
>
>
> __________ Information from ESET Smart Security, version of virus
> signature database 4378 (20090828) __________
>
> The message was checked by ESET Smart Security.
>
> http://www.eset.com
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: svnkit-users-unsubscribe@...
> For additional commands, e-mail: svnkit-users-help@...
>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: svnkit-users-unsubscribe@...
For additional commands, e-mail: svnkit-users-help@...