Questions tagged [svn-copy]
11 questions
5
votes
1 answer
Copy twice causes branch inside a branch instead of error
I have a normal SVN structure:
http://server/DEV/Project/trunk
http://server/DEV/Project/branches
I then branch off with the following command:
svn copy -m "message" "http://server/DEV/Project/trunk@123"…

Slav
- 27,057
- 11
- 80
- 104
4
votes
2 answers
Svn copy/move with history
Can I copy or move folder in svn as
svn copy URL URL
svn move URL URL
and save hishory?
There http://svnbook.red-bean.com/en/1.1/re07.html and there http://svnbook.red-bean.com/en/1.1/re18.html saids about copy/move folder with history as WC WC…

tbicr
- 24,790
- 12
- 81
- 106
4
votes
1 answer
How to git svn clone full history despite svn copy
In my company we are about to switch from svn to git. The SVN we use is very big, doesn't have a svn layout and on every version split we made a svn copy.
SVN Repository structur:
svnserver.company.de
product xy
majorversionnumber…

Spenhouet
- 6,556
- 12
- 51
- 76
3
votes
2 answers
updating tags in svn
If I use svn copy to take a snapshot of a portion of a repository, how can I update that snapshot?
Use case:
myrepo/
trunk/
src/
something.c
something.h
tags/
branches/
mkdir branches/user1/trusted
svn add branches/user1/
svn…

Jason S
- 184,598
- 164
- 608
- 970
2
votes
0 answers
How to svn copy only specific folders from trunk to new branch
I'm new to SVN and trying to learn the process. I have a trunk with many directories that looks something like this:
trunk
folder1
language1
language2
folder2
language1
language2
global
language1.jpg
…

MT3
- 1,065
- 3
- 13
- 22
1
vote
3 answers
svn copy - problem with directories
I want to create a tag in my repository. My command is:
svn copy trunk tags\1.1
I execute this command in the main directory of my local working copy. It however copies whole directory so the files ends up in tags\1.1\trunk directory, not in…

Lukasz Lysik
- 10,462
- 3
- 51
- 72
0
votes
1 answer
What's the difference between svn copy and svn merge for creating a branch?
What's the difference between svn copy and svn merge when creating a branch in SVN?

Naomi
- 81
- 1
- 8
0
votes
1 answer
Terminal, svn copy not working after multiple svn commands
I recently executed a command similar to the following:
svn copy https://myRepo.com/projectFolder1/myProject.prj https://myRepo.com/projectFolder2 -m "copied myProject.prj to projectFolder2"&& svn update
and indeed the copy went through then the…

pnizzle
- 6,243
- 4
- 52
- 81
0
votes
1 answer
svn: '/svn/wib/!svn/bc/5634/wib/trunk/components' path not found
We've recently migrated our SVN repository to a new server (but it still ran on the same domain) and made it unaccessible from http. We also used "--relocate" option of "svn switch" to point the working copy to the https URL instead of http.
After…

Abhay
- 6,545
- 2
- 22
- 17
0
votes
1 answer
After svn merge, does the previous revision got mixed up
I have questions about the svn merge regarding to the following situation:
repo/A is trunk. It has two child branch call repo/B and repo/C
let's say originally repo/B has revision 10.
repo/C merge foo.c to repo/A, the revision becomes 11.
repo/B…

Linghua Jin
- 570
- 2
- 6
- 22
0
votes
2 answers
svn copy : copy the entire directory to the another directory
I need to copy the entire directory to another URL.
svn copy http://10.0.3.2:8080/svn/New/trunk/Test http://10.0.3.2:8080/svn/New/trunk/Test7
It's working properly (i.e. entire /Test directory copied to /Test7 successfully at first time).
If I…

user1553605
- 1,333
- 5
- 24
- 42