KDevelop And Subversion


 
Thread Tools Search this Thread
Operating Systems Linux KDevelop And Subversion
# 1  
Old 10-19-2008
KDevelop And Subversion

Hi
How I Can Configure KDevelop to Use A Subversion on Local Network System.
When I Want to Create New Project, I See A Error With This Message:
"Fail to create project directories on repository"
What is My Problem???
Help Me Please!!!
My KDevelop Version is: 3.0.5
My Subversion is: 1.5.0

Thank's
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Web Development

About Apache Subversion

Hi all, I have a trouble with this, the web server include a website and also config as apache subversion, this server crashed and i moved the HDD to another machine, i started all the services and the subversion worked fine, but when i access to the website, this message appear A username and... (0 Replies)
Discussion started by: kidzer0
0 Replies

2. Programming

kdevelop build project error

Hi, I am starting to learn how to use KDevelop. I have a console program with .cc, .h and Makefile. To work it in KDevelop, I firstly create a C++ Simple Hello World program, remove the single existing target in the project and also the auto-created main.cpp. Then I copy my .cc and .h files into... (1 Reply)
Discussion started by: flylehe
1 Replies

3. Solaris

Looking for a subversion GUI for Solaris 9

If available. Didn't see any on the tigris website. Don't have the programming experience to create one. Any third party software would do, too. Client isn't command line friendly. (1 Reply)
Discussion started by: ECBROWN
1 Replies

4. Linux

Subversion

Anyone familiar with it? I'm aware it's a new CVS. I've been over to the tigris website, and am considering getting a copy to play with on my Sparc Ultra II Ent. Box. Thanks in advance. Eric (4 Replies)
Discussion started by: ECBROWN
4 Replies

5. UNIX for Dummies Questions & Answers

kdevelop problem install

Dear All I am trying to install KDevelop 3.0.0. on Mandrake 9.2. I have installed all the required dependencies but for some reason when I configure KDevelop it can't find Berkeley DB...although I know its on the system. I just installed it. I'm quite perplexed. Can anyone help? Last line of... (4 Replies)
Discussion started by: u6ik
4 Replies
Login or Register to Ask a Question
SVNPATH(1)																SVNPATH(1)

NAME
svnpath - output svn url with support for tags and branches SYNOPSIS
svnpath svnpath tags svnpath branches svnpath trunk DESCRIPTION
svnpath is intended to be run in a Subversion working copy. In its simplest usage, svnpath with no parameters outputs the svn url for the repository associated with the working copy. If a parameter is given, svnpath attempts to instead output the url that would be used for the tags, branches, or trunk. This will only work if it's run in the top-level directory that is subject to tagging or branching. For example, if you want to tag what's checked into Subversion as version 1.0, you could use a command like this: svn cp $(svnpath) $(svnpath tags)/1.0 That's much easier than using svn info to look up the repository url and manually modifying it to derive the url to use for the tag, and typing in something like this: svn cp svn+ssh://my.server.example/svn/project/trunk svn+ssh://my.server.example/svn/project/tags/1.0 svnpath uses a simple heuristic to convert between the trunk, tags, and branches paths. It replaces the first occurrence of trunk, tags, or branches with the name of what you're looking for. This will work ok for most typical Subversion repository layouts. If you have an atypical layout and it does not work, you can add a ~/.svnpath file. This file is perl code, which can modify the path in $url. For example, the author uses this file: #!/usr/bin/perl # svnpath personal override file # For d-i I sometimes work from a full d-i tree branch. Remove that from # the path to get regular tags or branches directories. $url=~s!d-i/(rc|beta)[0-9]+/!!; $url=~s!d-i/sarge/!!; 1 LICENSE
GPL version 2 or later AUTHOR
Joey Hess <joey@kitenet.net> Debian Utilities 2013-12-23 SVNPATH(1)