I finally decided to start using SVN for one of my projects as we're two people working on it and it becomes a hassle having to manually put files in the right place and stuff, so figured it would make things easier.
I have a few questions.
1: When I do any operation in command line it keeps asking to store password in clear text, I don't want to store password, how do I make it so it stops prompting me for this?
2:
When browsing via browser in apache, is there a way to browse previous revisions? If I go to the URL it shows the latest, but is there some kind of url trick to go to older ones? Is there a way to get a date on when that revision was made, or other such details?
3:
I was reading that you need to use SVN specific commands if you are creating or renaming files/directories. Is this really the case? Seems like quite a hassle. I tend to just work directly off my NFS share and use a text editor and create/delete stuff at will which is a large part of the development process. Do I really need to jump on the dev server and use the SVN commands every time I want to do something like that?
I have a few questions.
1: When I do any operation in command line it keeps asking to store password in clear text, I don't want to store password, how do I make it so it stops prompting me for this?
Code:
[root@appdev src]# svn commit -m "test commit"
Authentication realm: <https://echoriath.loc:443> Subversion repo: test
Password for 'testuser':
-----------------------------------------------------------------------
ATTENTION! Your password for authentication realm:
<https://echoriath.loc:443> Subversion repo: test
can only be stored to disk unencrypted! You are advised to configure
your system so that Subversion can store passwords encrypted, if
possible. See the documentation for details.
You can avoid future appearances of this warning by setting the value
of the 'store-plaintext-passwords' option to either 'yes' or 'no' in
'/root/.subversion/servers'.
-----------------------------------------------------------------------
Store password unencrypted (yes/no)? no
Sending stuff.cpp
Transmitting file data .
Committed revision 2.
[root@appdev src]#
2:
When browsing via browser in apache, is there a way to browse previous revisions? If I go to the URL it shows the latest, but is there some kind of url trick to go to older ones? Is there a way to get a date on when that revision was made, or other such details?
3:
I was reading that you need to use SVN specific commands if you are creating or renaming files/directories. Is this really the case? Seems like quite a hassle. I tend to just work directly off my NFS share and use a text editor and create/delete stuff at will which is a large part of the development process. Do I really need to jump on the dev server and use the SVN commands every time I want to do something like that?
Last edited:
