-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Unfortunately, the answer to this question isn't quite as simple as it sounds... but I hope it can still be relatively simple. Please read all the way through before telling me that the answer is: "svnadmin create... duh"
I'm working for a company that set up their SVN server in an odd way (at least…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is it possible to create a mercurial repository inside an existing mercurial repository?
The idea is to handle subdirectories of a repository as different repositories, how do you do that?
I'm not talking about subrepos (at least, if I understood the purpose of subrepos...), but if this is how subrepos…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
All examples I've found on git-svn detail how to use git to mirror an existing SVN repo, work on it, then commit your changes back.
I have a pure git repo, created via git init not git-svn init and want to commit it to a new SVN service (Google Code, to be specific).
Is this something that can be…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I have to setup a server which can allow http vcs management (such as git and svn).
svn support works well, but I have some trouble with git.
Actual configuration:
CentOS 5
Apache 2.2.8
Git 1.7.4.1
The /etc/httpd/conf/httpd.conf content:
ServerTokens OS
ServerRoot "/etc/httpd"
PidFile run/httpd…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
We have an nginx server which proxies to a standard set-up of Apache+SVN. The nginx set-up is a very simple proxy:
server {
server_name svn.ourdomain.tld;
location / {
proxy_pass http://localhost:8080;
}
}
Apache is set-up as follows:
<Location />
DAV svn
SVNParentPath…
>>> More