Hi folks!
I recently found some problems when I tried to rename a package in a Java project with Eclipse. I use Subversive for SVN integration.
If I rename a package via Refactor -> Rename, the commit fails.
I have to rename it in a somewhat strange way:
Create the new package as a new empty folder
Select all classes to rename
right...
I'm tired of subversion, it keeps corrupting its own repository. As I was for a long time curios of git and always wanted to try it out, I've decided to give it a go and use git-svn. But reading through documentation I realized that you can't use much of git awesomeness with it. You can't use git-pull, it is not recommended to create loc...
Given: an SVN repository, a bin directory inside it and a script.pl inside this bin. Some revisions ago, bin and script.pl has been added to the repository in one commit. Since then, some revisions has been applied to script.pl.
Needed: a diff command which would return a complete diff for script.pl from zero to HEAD, i.e. a diff with a...
Has anyone tried using the tofu-scale descriped in Practical Perforce by Laura Wingerd together with svn?
The tofu-scale tells us how to propagate changes between branches (codelines). Changes in stable branches should be merged to less stable branches (firm-to-soft), and changes in the less stable branches should be copied to the stabl...
Is it possible to create a property in the autoprops section of .subversion/config file which contains multiline values?
So that it would look like:
svn pg myprop
will output
1st line of prop
2nd line of prop
...
Our relatively small development team is getting a bit sick of Dreamweaver. The only functionality that we're reliant on is its file check in system. As the team is likely to grow over the next few months we need to address these issues.
Subversion has come to our attention but are unsure if it will suit our requirements.
All we need i...
I am trying to run git-svn using TortoiseGit and am having problems (405 Method not allowed) and am wondering if the problem is that the svn server is too old (svn 1.3). Is there any documented compatibility list of git-svn and svn server?
...
I'm attempting to pull a list of files that changed during a range of dates from svn.
Currently I'm using something like this:
svn diff -r {2009-08-10}:{2009-08-20} --summarize d:/libs/trunk
Is there a better way to do this?
...
I'm relatively new to version control, and so far only have experience working with Subversion using TortoiseSVN/VisualSVN. I've been reading about other types of VCS (git, mercurial, etc), and am considering trying them out - however, many of the arguments for or against a particular VCS seem like they largely come down to subjective pr...
I have two projects which I manage internally using Perforce. These are also published to google code using svn.
http://code.google.com/p/orapig/
http://code.google.com/p/cx-oracle-demos/
I currently have a set of scripts that copy from the perforce area in my home directory to the svn area, sync it, diff it, and commit it.
...
For some reason, subversion is returning me error messages in what I think is German:
# svn up .
svn: Zielpfad existiert nicht
Unfortunately, I don't know that language... Before I resort to using a online translation engine to work with this, I figured I'd try to fix it. I figure I'm just doing something very simple wrong. I'm ru...
Is there an equivalent command to 'p4 opened' in svn?
...
Is it possible to position a SVN repository on Skydrive?
...
Sometimes Tortoise requires me to do cleanup for no good reason - meaning I didn't abuse / kill it / stop it in the middle ... IMO this is "normal opertaional flow" and shouldn't require a manual cleanup.
Is there a way to not show these cleanup requests to the user but rather just do them silently under the hood and present a consisten...
I'm working with an SVN repository that is laid out like this:
$SVN/[project]/trunk
$SVN/[project]/branches/[user]/[branch]
$SVN/[project]/tags/releases/[tag]
My .git/config looks like this:
[svn-remote "svn"]
url = $SVN
fetch = project/trunk:refs/remotes/trunk
branches = project/branches/*/*:refs/remotes/*
When I...
Hello,
I have been managing Subversion as an engineering document storage repository for my company. It is working fairly well, however I have a question about how MS Office 2007 formats are (should be) handled by Subversion.
I'm looking at an Excel 2007 spreadsheet (extension .xlsx) in my working copy that Subversion has applied the ...
We have a large vendor branch (1200 odd files) that has recently undergone some non-trivial changes, which I'd like to integrate back into the trunk. It updates fairly frequently and we'll need to update equally frequently, so doing it by hand is going to involve far too much wasted time.
This is what svn_load_dirs.pl was made for, only...
I have a subversion working copy checked out into the directory my-project/
I want to find out what user checked out that working copy. Is there a command I can run in that working copy directory to find out who it is checked out as?
EDIT:
I want to use the command-line SVN client, not a GUI program specific to any OS.
...
Hi,
I had a problem in one of my projects, I decided to checkout an older revision and do a few modifications to it. I am now trying to commit this older modified revision and any contained changes to HEAD.
When I do the svn ci -m "reverting with some changes" it gives me:
svn: File '/trunk/main.c' is out of date
I tried doing an up...
Sometimes I want to get a file from a repository for use in some project that's not under source control. Let's say it's just a file full of handy utility functions. I know I can just to an svn export but I'd like to be able to do an svn update from time to time to get the latest version of the file.
The important thing is I don't want...