views:

453

answers:

3

i want to set my full name (or a name choosed by me) to appears in the $Id$ area on commit and not my nickname. There is a way to do it?

Thanks in advance , Sirakov

P.S. OS: Ubuntu 8.10

+1  A: 

You want a file with your name on it and then

svn propset svn:keywords "Author" file.txt

As seen in http ://svnbook.red-bean.com/en/1.4/svn.advanced.props.special.keywords.html

$Id$ is a combination of Revision Number, Date, Author and URL.

eipipuz
Sorry my english is not the best, i will try to explain my problem again:When I usesvn propset svn:keywords "Id" file.txtthen i get something like:$Id: tagging.phtml 3189 2009-05-31 13:33:58Z sirakov $But I want to put "firstname.lastname" (not my nickname "sirakov") every time when i commit someting new. I hope, you can now understand what i mean.
cupakob
+1  A: 

You could, if the repository allows it, change the author. I would recommend not to do so though, because you'll have to do this after each commit.

Can't you just change your login name?

Sander Rijken
i can't change it, the nickname is generated automatically from my email, which i used to join the developer group.
cupakob
A: 

there is no way to set it :(

cupakob
That's not true, you can set the property
Sander Rijken