Questions tagged [svn-update]

SVN-update process downloads the updates from the repository and displays the list of all the changes. The process merges files wherever possible and display conflicts otherwise. It removes the file if removed from the repository.

56 questions
57
votes
7 answers

What's the git equivalent of "svn update -r"?

I'm a recent git convert. It's great to be able to use git-svn to keep my branches locally without disturbing the svn server. There was a bug that existed in the latest version of the code. I wanted to establish a time when it worked so that I could…
fratrik
  • 1,700
  • 2
  • 15
  • 17
39
votes
5 answers

Change depth in existing SVN working copy without redownloading

I have a working copy of an entire SVN repository, but I want to change it into a sparse working copy because of disk space issues. One way to do this would be: svn up --set-depth immediates projects svn up --set-depth infinity projects/project1 svn…
Bart van Heukelom
  • 43,244
  • 59
  • 186
  • 301
19
votes
1 answer

SVN strategy using branches, and merging changes from trunk into branch

So long time user of SVN, but fairly inexperienced in branching / tagging, and when I have I suspect I'm not really using it correctly or to its full potential. I have my trunk which I work on adding new features etc. This code base is used in…
Horse
  • 3,023
  • 5
  • 38
  • 65
15
votes
5 answers

Force SVN update / checkout to overwrite local files

i'm planning to run (on my server!) svn update to update my LIVE website with updates. However, i'm worried about 'C' conflicts which will prevent my site scripts from functioning. How can I force the checkout / update process to overwrite all…
siliconpi
  • 8,105
  • 18
  • 69
  • 107
12
votes
1 answer

Update to a particular revision in SVN?

I performed an svn co -r XXX .... I deleted a file and then [accidentally] performed svn up. That updated to HEAD, so I lost my changes at XXX. Is it possible to perform an update against a particular revision? If so, how? Related, it is possible to…
jww
  • 97,681
  • 90
  • 411
  • 885
9
votes
3 answers

SVN unversioned directory with same name already exists

I also see questions with similar headings but this one has exception that error is while updating on server so can't delete the previous unversioned directory. I am using SVN for uploading code files, you we created uploaded images directory at…
Hafiz
  • 4,187
  • 12
  • 58
  • 111
8
votes
2 answers

How can I get SVN to take a specific resolution for all binary conflicts without prompting me for each one?

When running an svn up I regularly encounter this prompt: Conflict discovered in 'lib/somelibrary.so'. Select: (p) postpone, (mf) mine-full, (tf) theirs-full, (s) show all options: Hitting s reveals the options mc and tc,…
Matthew Read
  • 1,365
  • 1
  • 30
  • 50
7
votes
3 answers

Why do I have to routinely Clean one particular project in Eclipse?

I am using Eclipse 3.5 for several different Java/JSP projects. All of our project code is stored in Subversion. I use the Subclipse plugin to update / commit code. This works great for all projects except one. There is one project where almost…
Shane
  • 2,629
  • 6
  • 32
  • 39
7
votes
3 answers

Some of selected resources were not cleaned. svn: E155032: Pristine text not found

I m using Eclipse JUNO on windows 7. I m using Visual SVN as SVN Repository. When i try to update a file, I am getting an error 'Some resources were not updated. svn: E155004: There are unfinished work items in 'E:\SVN\tms'; run 'svn cleanup'…
Anoop Pete
  • 492
  • 2
  • 4
  • 17
7
votes
2 answers

How to fetch a Subversion external without fetching all other directories and subdirectories

I have a Subversion repository called 'repo'. Inside of repo are trunk/ and branches/ directories. Within branches/ there are several dozen release branches, e.g. 1.0/, 1.1/. These branches/ directories contain a relatively large application. I want…
egherrmann
  • 73
  • 1
  • 5
6
votes
1 answer

SharpSVN doesn't update files

SvnUpdateArgs asdf = new SvnUpdateArgs(); asdf.AllowObstructions = false; asdf.Depth = SvnDepth.Infinity; asdf.IgnoreExternals = false; …
animekun
  • 1,789
  • 4
  • 28
  • 45
5
votes
3 answers

How do I force revert back so a specific revision number using command line SVN?

I spoke too soon in my previous post about breaking things. I am trying to revert back to revision 1124 using the command svn update -r 1124 but I keep getting an error message as follows: [prague]$ svn update -r1024 U …
adam
  • 2,830
  • 5
  • 31
  • 37
4
votes
2 answers

How to switch repositories in Android Studio?

I had initially checked out code from repository A. But due to maintenance tasks, we had the code moved to a new repository B. When I try to update/commit my code I get the below error: svn: 'http://99.99.99.old/svn/company/project/trunk/web' is not…
Ahmed Faisal
  • 4,397
  • 12
  • 45
  • 74
4
votes
2 answers

SVN Update fails due to folders with same name, just different case

Somehow someone has manage to create two folders with the same name except the case of the first letter (eg "trunk" and "Trunk") which causes the svn update to fail (because windows being case insensitive wont allow the creation of both…
Fire Lancer
  • 29,364
  • 31
  • 116
  • 182
3
votes
4 answers

Subversion update all working copies under common parent directory

I am working on a number of projects simultaneously. Each project has a Subversion repository. The repositories are not all hosted on the same server. When I start my day, I find myself having to do an svn update for each of the individual…
sammy34
  • 5,312
  • 5
  • 29
  • 42
1
2 3 4