|
I'm trying to understand the differences in terms of subversion repository security between a regular svn:// and svn+ssh:// access.
I've setup my subversion repository in a custom port and ip address and opened that same port on the firewall, and configured...
Started by smartins on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If I remember....
The difference between svn+ssh:// and creating your own tunnel with PuTTY over an insecure network.
Instead of using the svn "socket" you would be using a more secured version using the SSH protocol to comunicate between ends.
|
|
I'm using tortoise svn in Windows.
How can I branch in SVN and have it branch my svn:external folders as well?
Started by Brian R. Bondy on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
So svn....
You should use svn:externals as external references from different repositories.
You'll have to manually create a branch in your external repository and then change your svn:external property to point to the correct branch.
|
|
You know, the regular "svn commit". "svn up."
When I did svn co, it was linked with SSH.
svn co +ssh or something.
How would I link this with Windows? I'm using Windows and I'd like to put some code i this SVN. What tools do I use to get started? Can ...
Started by alex on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If you simply want to use a Subversion client on Windows, the best option accesses the server the same way,....
Cheers.
EDIT
You also might find this tutorial helpful: http://tortoisesvn.net/ssh_howto.
To SVN and facilitates things a lot.
|
Ask your Facebook Friends
|
Is there a command-line based version of svn for Windows? I know I can get TortoiseSVN, but that just doesn't work for me.
Started by Pieter on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Even a port of svn ..
I've used sliksvn and it works great for me
The subversion client itself is available on Windows (for Windows)
This installer only includes the command-line client and an auto-update component.
|
|
What's the best practice for accessing SVN over HTTP in a Windows environment?
In Linux, we connect SVN to Apache all the time, so we can address remote repositories over HTTP. Is there a way to connect SVN to IIS, or some equally handy way to let you...
Started by Deane on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are wanting to checkout, update, commit then you a few link suggestions on the... .
Google provides quite Apache on Windows with the SVN module.
The last time I set up an svn/http/windows machine I set up an Apache server.
|
|
I currently am running SVN on my Windows Server 2003 as a module in Apache.
Is it possible to set up SV to run as a Windows service as well? The goal is to access the repositories via svn://servername and http://servername ?
How can this be achieved?
Started by Roaders on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
However it can be done....
Apart from VisualSVN you can also look CollabNet SVN that includes automatic checking of updates.
Have you tried VisualSvn server ? It's much more easier to set it up using it for windows server
The answer is Yes.
|
|
How can I setup write access policies for an SVN repository under Apache2 on Windows Server 2008 ? Please help. TIA!
Update1:
I have next configuration already:
<Location /svn> SVNParentPath "E:\SVN" DAV svn SVNListParentPath on AuthType Basic AuthName...
Started by abatishchev on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at serverfault):
To set up anonymous read-only svn access put in your vhost config for apache:
<Location /svn> DAV svn SVNPath /somewhere/svn <LimitExcept GET PROPFIND OPTIONS REPORT> Order deny,allow Deny from all </LimitExcept>....
|
|
I have installed svn console client from these binaries - subversion.tigris.org/getting.html#windows - 1.5.6, 1.6.4, 1.6.5. But no release seems to work. Just it can't checkout from any repo (code.gjangoproject.com; code.google.com): svn couldn't connect...
Started by RinKaMan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
What about using an other SVN client ? Head to http://tortoisesvn.tigris.org/
If you really can't connect to the server....
Fastest, easiest, free-est way of getting SVN running on Windows.
And just install Visual SVN Server .
|
|
Is Visual SVN Server generally viewed as a trustworthy SVN server? I went to Wikipedia and didn't see any item for VisualSVN Server under Visual SVN so I added a line there... but there seems to be no mentioning of it otherwise.
Started by Jian Lin on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
As far as I can tell, it's just a custom distribution of SVN + Apache to handle a lot of traffic....
Since all my code is in Windows code if I change the Windows lineMy company has been using it.
To a public Linux SVN hosting.
|
|
Hello
We need to upgrade our SVN from version 1.4.4 to version 1.6
I thought we could use command line: svnadmin upgrade
But it does not exist in our version.
SVN is running on a Windows Server environment
We are running SVN Server version: svnadmin, ...
Started by Lucifer on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
What kind of server....
(Check this using svnadmin --version procedure.
The svnadmin command is part of the SVN server package, I suppose you tried SVN 1.4.4.'s svnadmin instead of SVN 1.6's.
svn 1.6 comes with svnadmin command.
|