Reputation: 4013
I want to change the subversion configuration file (Ubuntu 14.01), as explained here.
However, there is no ~/.subversion/servers
file:
ls subversion
results in:
changelog.Debian.gz
copyright
examples
NEWS.Debian.gz
README
README.Debian
svn_1.6_releasenotes.html
svn_1.7_releasenotes.html
svn_1.8_releasenotes.html
Upvotes: 0
Views: 1307
Reputation: 4013
Solved! I found here that the configuration file is stored in different locations:
~/.subversion/config
or/etc/subversion/config
Thanks for the comments.
Upvotes: 1
Reputation: 18711
ls
will only list the 'visible' files. Files starting with a .
are considered 'hidden' in Linux.
Use ls -al
to list the .subversion
folder.
If it doesn't exist, just create the folder and file.
Upvotes: 0