How to install svn (Subversion) on linux machine?

SVN or Subversion 

—>>

Subversion, or SVN, is a mechanism by which developers can keep track of changes to their code and distribute these changes to the public in real time. This allows people to take advantage of software as it is being developed, between official releases. 

I referred following steps :

====
cd /usr/local/src/

wget http://subversion.tigris.org/downloa…n-1.4.5.tar.gz
wget http://subversion.tigris.org/downloa…s-1.4.5.tar.gz
wget http://www.sqlite.org/sqlite-3.5.2.tar.gz

tar xzf subversion-1.4.5.tar.gz
tar xzf subversion-deps-1.4.5.tar.gz
tar xzf sqlite-3.5.2.tar.gz

cd sqlite-3.5.2
./configure
make
make install
./sqlite3
.help
.exit
cd ..

cd subversion-1.4.5
./configure
make
make install
svn –version 
====

 

Both comments and pings are currently closed.

Comments are closed.