Tagged Questions

13
votes
10answers
1k views

How to wean myself from FTP in favor of Version Control

I have heard that uploading your website with FTP is now for n00bs, but it's the only way I've known how for the 8 or so years I've been building websites. Apparently all the buzz now is using a ...
8
votes
6answers
5k views

Pushing from subversion to web server

Long ago I tried to sort out my system between local, web server and subversion. I got some good explanation on this question. Unfortunately I hit a road block on the whole pushing from SVN to a web ...
4
votes
1answer
588 views

pysvn with svn+ssh

I'm working with pysvn, and I'm trying to find a decent way to handle repositories that are only accessible via svn+ssh. Obviously SSH keys make this all incredibly easy, but I can't guarantee the end ...
4
votes
4answers
3k views

How to make AnkhSVN remember my SVN + SSH password?

I want AnkhSVN to remember my SVN + SSH password. Until now I have to type it multiple times per operation. A previous topic discussed 2 solutions 1) Replace the default ssh client by renaming ...
3
votes
1answer
94 views

pysvn prompts for password with svn+ssh

I'm writing Python app which uses pysvn to get svn log history. It works ok for http:// like urls, but for svn+ssh:// I get prompted for a password on the command line! I use callback_get_login to ...
3
votes
2answers
383 views

Subversion Through a tunnel

For work, I work in a closed network. There are a few IP addresses that we have set up that are only accessible from inside our network. There is one box, though, that we can SSH into and tunnel ...
3
votes
3answers
2k views

Automating svn update

I'm frequently sshing into a server, switching to a specific directory and running svn-update I'm thinking that there's probably a very easy way to automate this, so I can simple specific a ...
3
votes
1answer
5k views

Changing the username for a Subversion commit over svn+ssh

I've run into an issue with our Subversion configuration here: I've checked out a project over svn+ssh on the local Linux system. So svn info reports something along the lines of: URL: ...
3
votes
4answers
13k views

How can I setup subversion with ssh tunnel in Eclipse?

I have a remote server that hosts my subversion repository on a non-standard ssh port. I want to use Eclipse's subclipse plugin as my client end to access the SVN repository. I can access the ...
3
votes
3answers
3k views

How to check out a Subversion repository using svn+ssh protocol?

I'm trying to checkout a repository via command line (the 'svn co' command), using the svn+ssh protocol. I need to checkout as a different user than what I currently am. The command svn co ...
3
votes
3answers
2k views

Check out from a remote SVN repository TO a remote location?

Is there a way with SVN to check out from a remote repository to another remote location rather than my local file system? Something like: svn co http://myrepository/svn/project ssh ...
2
votes
2answers
132 views

svn over 2 ssh tunnels

I am cracking my nut here trying to get this to work, maybe someone can help me understand this a bit better. I found a question that is almost what I want to do called Accessing Subversion repository ...
2
votes
2answers
53 views

Collision of files when doing the “svn up” command via ssh

I've been trying to update the server with the "svn up" command via ssh connection, and there was a notification saying that there is a collision of files - it was a jobs_controller file (cakephp). ...
2
votes
2answers
369 views

SVN keeps prompting me for passwords and refuses to cache my credentials

Environment : Eclipse Indigo, Ubuntu 11.04, Subclipse 1.6 SVN Clients : Subclipse, RabbitVCS I'm connecting via svn+ssh. My URL looks like : svn+ssh://[MY NAME]@[MY DOMAIN]/[PATH] I can connect to ...
2
votes
3answers
67 views

Fetching SVN logs locally

I have root access to a server hosting a SVN respository (via SSH). I need to do some heavy log crunching, basically I have to fetch the revision of each diff using: svn diff -c ARG where ARG is ...
2
votes
1answer
426 views

SVN+SSH checkout using tortoise

I am trying to checkout files from svn+ssh server using Tortoise, but when I enter all details, it gives me an error "Error: Network connection closed unexpectedly". I have confirmed that my details ...
2
votes
3answers
2k views

Mac Keychain - remember svn+ssh// password

I'm using Snow Leopard and I access svn through the standard commandline: svn co svn+ssh//myusername@example.org/svn/myproject How can I get Keychain / svn to remember my password?
2
votes
3answers
506 views

svn Merge Problem (3 levels of svn)

I am new to use svn and the company in which I work uses three levels (I don't know whether this is a correct word to use here) of svn. I mean the developers are provided a working directory on a ...
2
votes
1answer
327 views

svn+ssh checkout slow

I trying to checkout about 400MB of images from svn using svn+ssh. It is running extremely slow. (approx 3Kbytes/s) I am using TortoiseSVN as the client. The server is the standard svn server that ...
2
votes
4answers
3k views

Changing username in SVN+SSH URI on the fly in working copy

I am using SVN+SSH to check out a working copy of repository from an SVN server on which all developers are members of a developer group and have full read/write permissions on the repository ...
2
votes
2answers
734 views

Accessing Subversion repository with 2 hops using svn+ssh protocol

My ubuntu subversion server is not directly accesible to the internet, 192.168.1.2 My public ubuntu machine is exposed through the dmz at 192.168.1.1 i setup port forwarding from 192.168.1.1:3906 to ...
2
votes
2answers
573 views

Subversion with ssh for authentication

We have a Subversion server running on Linux. We have used to authenticate user with unencrypted password using passwd from conf folder for the subversion repository. We have tried to change to use ...
2
votes
2answers
1k views

svn/ssh question in windows

I am trying to do a command line svn update on my windows machine (to use in a batch file), and I want it to emulate what my settings are in the Tortoise SVN GUI. In the tortoise settings, we have to ...
2
votes
5answers
6k views

How do I get a SVN checkout using a Public/Private key pair?

I have to check some code and run it. I have the URL: svn+ssh://myuser@www.myclient.com/home/svn/project/trunk I have a file with their private key. What do I do to get this code?
1
vote
0answers
13 views

SVN authentication via --username with single ssh user

Is SVN via svn+ssh:// able to handle ONE ssh- but multiple svn-users? Example: svn co svn+ssh://svn@myserver.com/repo --username=userA svn co svn+ssh://svn@myserver.com/repo --username=userB ...
1
vote
2answers
71 views

configure svn to use ldap with svn+ssh

I'd like to setup a svn server on a linux box with the following constraints : users will access the svn using command line users will use a svn+ssh protocol ( no http server on the box) all users ...
1
vote
3answers
163 views

how to commit to svn when remote username differs from local?

I am developing on a mac and using an svn server on another machine using svn_ssh While I was able to do an initial checkin and checkout I cannot do a commit from the command line because the system ...
1
vote
1answer
31 views

svn call from python not working on ubuntu box

I have a python script in my django project that grabs information from an 'svn log' call and displays it on a page. Something like: cmd = 'svn log svn://(blahblahblah)' subprocess.Popen(cmd, ...
1
vote
1answer
82 views

Access SVN server from machine on work subnet via an SSH tunnel

I'm attempting to access my work SVN server via an SSH tunnel to a separate machine. Something like this: (Local_Machine) -- SSH_Tunnel --> (Workstation) -- LAN --> (SVN_Server) I can currently ...
1
vote
2answers
56 views

Setting up svn repository

I recently setup svn on a Windows 2003 server over ssh. I'm familiar with the developer end of svn, but I've never had to be the admin. The point of it is to allow remote development through visual ...
1
vote
1answer
104 views

use non default ssh key with svn+ssh

I have a set up script that has parts that require root. Part of the setup is a svn+ssh checkout (which does not need root but is still run as root). I have a special user for ssh and I set up the ...
1
vote
1answer
334 views

subversion client encrypted password via gnome-keyring for ssh (only) client

I want subversion to encrypt my passwords on a Fedora server without the gnome desktop running. However I did start in the gnome GUI for a sanity test and did the normal mods to: ...
1
vote
0answers
119 views

ssh on localhost without passphrase to allow svn+ssh://

A subversion repository uses property svn:externals to include files from another repository. Both repositories reside on the same server. Clients use svn+ssh:// to connect to the respositories ...
1
vote
2answers
204 views

How to retrieve SVN+SSH username in eclipse in linux

I have checked-out one of the project from SVN (using SSH protocol) (been a long time). I want to retrieve the SVN username that I had used when I checkout this project in ECLIPSE. What I tried: ...
1
vote
1answer
85 views

svn diff through SSH - not same results as Trac?

Greetings, I'm trying to generate a diff for a revision from a remotely hosted SVN repository (hosted with codesion.com). If I view the diff/changeset through Trac, i can see the changes made in the ...
1
vote
2answers
341 views

Svn repository stopped working with svn+ssh (but works locally on the server)

I had an svn repository that I used to checkout with the svn+ssh protocol. It has some EXTERNALS in it that refer to itself with the svn+ssh URL. I was off this project for a while until today. When ...
1
vote
3answers
579 views

Automatic authentication with Subversion

I have an SVN server I connect to with ssh+svn. When checking out a particular directory containing a lot of svn:external repositories, I have to enter my password numerous times. How do I set up my ...
1
vote
1answer
325 views

Trying to deploy from Springloops to Amazon EC2 Server

I'm trying to set up an auto-deploy from my springloops SVN through SFTP, but apparently springloop's private/public key authentication doesn't work, so they advised me to use a standard password only ...
1
vote
1answer
148 views

Why am i getting “/RCS/trunk,v: No such file or directory” when i try to checkout SVN?

I tried to checkout a project from the server to my local computer with svn+ssh command but i get a strange error: /RCS/trunk,v: No such file or directory Why is this happening and how can I fix it? ...
1
vote
0answers
254 views

svn hangs when tunnelling through ssh

I have a strange behavior when trying to use svn over ssh tunnel. Environment: server running Ubuntu9.04, client running Debian Lenny Symptoms: svn hangs both on client and server on some (but not ...
1
vote
1answer
420 views

Hudson “Perform Maven Release” fails on committing to svn+ssh on different port

We have svn+ssh setup on non-standard port. We added svn+ssh credential in Hudson, when it asked us. Ordinary build goes fine, without any problems: Started by user anonymous Checking out ...
1
vote
0answers
359 views

Using svn+ssh with private key in JDeveloper 11.1.1.3

I'm a consulting at a government agency. We have high security requirements all through the development process. Amongst other things, we are required to connect to our subversion repository over ...
1
vote
2answers
399 views

Can't type password (or anything else) into plink with svn+ssh

I've been using SVN and Windows for a while now, but recently I tried to get it working on a new machine. I have a svn+ssh:// repository that I need to access but I am unable to because, as I ...
1
vote
1answer
469 views

Why does cygwin's svn ask for a password?

At work we have svn setup so that when I have an ssh tunnel open to the server I can access repositories from localhost without beeing prompted for a password. (The repositories are accessed via ...
1
vote
2answers
273 views

How do I shorten the repository URL using svn+ssh similar to svnserve -r?

In the svnbook, it shows you how to shorten the URL to your repositories when using svnserve as a daemon, using -r like: svnserve -d -r /usr/local/repositories That way, you can refer to the ...
1
vote
1answer
979 views

Help with SVN+SSH permissions with CentOS/WHM setup

I'll try my best to explain how I'm trying to set up this system. Imagine a production server running WHM with various sites. We'll call these sites... site1, site2, site2 Now, with the WHM setup, ...
1
vote
7answers
451 views

Subversion SSH export question

So I have a project on a remote file system (that I have been editing via ssh). Now I need to copy the project onto my hard drive. I don't really need version control on the project anymore, so this ...
1
vote
5answers
2k views

SVN+SSH, not having to do ssh-add every time? (Mac OS)

I know the answer is out there, but I'm pretty Unix-dumb and probably wouldn't recognize the solution if it hit me in the face. I'm on a Mac, connecting to a SVN server via SSH tunneling. I have to ...
1
vote
1answer
433 views

SVN+SSH authentication isses when running CruiseControl.NET 1.4.4 SP1 service on Windows Server 2003

The SVN+SSH protocol works great for the logged-in user because we have Pageant (PuTTY authentication agent) running in the background for that user. When we try to run the ccservice (as opposed to ...
1
vote
1answer
145 views

Using svn via ssh as a local environment

I'm mounting a server in Ubuntu using Nautilus and FTP. For Facebook development, working on the files on the server makes the development cycle easier and quicker. I'm trying to set up a "local" ...

1 2