[nas-2000] Re: subversion for nas-2000

  • From: "flipstar@xxxxxxx" <flipstar@xxxxxxx>
  • To: nas-2000@xxxxxxxxxxxxx
  • Date: Wed, 17 Oct 2007 22:53:30 +0200

Hey Sven

some very briefe notes to svn:
for more infos there is a free svn handbook (really good!!!)
http://svnbook.red-bean.com/

#
# on the NAS do
#

#create svn-root
mkdir -p /mnt/IDE1/svn-test


#creating a repository:
svnadmin create /mnt/IDE1/svn-test/test-1


#
# on your pc do
#

# get a local copy
# Note: if you don't use a public key you'll have
# to retype your passwd serveral times (run as user root for *testing*)
svn co svn+ssh://192.168.10.130/mnt/IDE1/svn-test/test-1

#
# create a new file and add it
cd test-1/
vi test.txt
svn add test.txt

svn commit

#
# becaus ethis is a simple test we'll allow anon write's
# edit test-1/conf/svnserve.conf and change
anon-access = write

#
# next start the svnserver on the NAS
svnserve -d -r /mnt/IDE1/svn-test/

#
# and check out test-1 from your pc
# because we deinfed -r = svn root we don't have to define the full path
# below
svn checkout svn://192.168.10.130/test-1


--
flip

Sven Schreier schrieb:
> Philipp Wehrheim schrieb:
>> Hi Sven,
>>
>> Am Mittwoch, den 17.10.2007, 14:02 +0200 schrieb Sven Schreier:
>>   
>>
>> did you try:
>> --foreground 
>>
>>   
> yes, i used "-d --foreground" but i didn't see any messages.
>> or some debug flags?
>>
>>   
> i don't know the flags? "--help" says nothing about it.
>> until now I have only used svn over ssh.
>> I tried plain svn but had some trouble with the authentication
>> but i think it was working password less.
>>
>>   
> but you have used svn on your nas?
>> I'll check tonight and let you know.
>>
>>   
> this is great!if i can give you some help, you are welcome.
>> sure what are the changes? aka new features? bugfixes?
>>
>>   
> it was just a test, if i am able to crosscompile more than just a
> "hello-world". and it seems to work, but i the problem still remains.
>> Ok one more thing (I always write but ... well ... ):
>> If you manage to get things doing please please and please
>> write a howto for others!
>>
>>   
> sure i will share my knowledge with the community. but before i write
> some lines to the wiki i wanted to test it ... and here am i.
>> --
>> flip
>>
>>
>>
>>   
> cu Sven
> 
> 


Other related posts:

  • » [nas-2000] Re: subversion for nas-2000