Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to download ArgoUML source code from the Tigris website using Subversion client?

Tags:

svn

argouml

Sorry for maybe this is stupid question, I just want download source code form the link as follows: http://argouml.tigris.org/source/browse/argouml/trunk/src/

I try to use the command:

svn checkout http://argouml.tigris.org/source/browse/argouml/trunk/

but it throw error :

svn: OPTIONS of 'http://argouml.tigris.org/source/browse/argouml/trunk': 200 OK (http://argouml.tigris.org)

I am strange that , how to checkout the source code from the url ?

Many thanks for your help!

Regards.

like image 294
iXcoder Avatar asked Dec 29 '22 19:12

iXcoder


2 Answers

Tigris.org is using authentication on their SVN connection, so you need to say that you are the user "guest" (no password), like this:

svn checkout http://argouml.tigris.org/svn/argouml/trunk argouml --username guest
like image 78
ewall Avatar answered Jan 30 '23 00:01

ewall


Detailed instructions here http://argouml-downloads.tigris.org/source/browse/argouml-downloads/

like image 27
Gishu Avatar answered Jan 30 '23 00:01

Gishu