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
3
votes
2 answers

SVN update does not work anymore

A colleague of mine had problems updating his sources. We update the folder and it looks like it's updating to the latest revision. ("updated to revision xxxx") Then, we check the log ("Show log") for some files -and the folder itself!- and we…
Liezzzje
  • 430
  • 2
  • 6
  • 17
2
votes
1 answer

Stop svn update if file is opened

Is it possible to block an svn update of a file if the file is open, either via a wrapper or a pre-update hook? Many colleagues in my team are running into problems with Tortoise SVN when they call SVN Update on a LaTeX file that they have open,…
Richard
  • 23
  • 5
2
votes
1 answer

Tortoise SVN Commit/update Hangs

I am having some problems with Tortoise SVN, when I do commit/Update in the project folder, it hangs. I tried to uninstall it and install it again.it did not work. also I tried to downgrade to lower version 1.7.11. It doesnt allow me to…
SEgeek
  • 119
  • 2
  • 8
2
votes
1 answer

A More Robust svn update

When svn update fails, executing svn cleanup is often required before resuming the update. If failures are frequent, this can get really annoying. I'm looking for a way to make the SVN update command more robust. Ideally, it would be nice if there…
Isabelle Wedin
  • 1,345
  • 10
  • 26
2
votes
3 answers

How do I undo accidental svn update

I accidently took an update of my project, and now the updated project has errors(due to partial commiting of code). How can I undo the update process and get the working copy back. The working copy contains packages that are from different…
Syam Kumar S
  • 832
  • 2
  • 8
  • 26
2
votes
1 answer

Subversion update command performance

When I execute a SVN update on a directory, how does svn execute it? Does it execute update on each file in the directory regardless of file's diff status from the working directory? Or does it execute update only on the files that are "out of…
Eric
  • 1,023
  • 1
  • 15
  • 27
2
votes
1 answer

SharpSVN update to specific revision c#

I'm iterating over the svn revisions from sourceRevision to targetRevision. In each iteration, I wish to update my repository to the revision I'm current in. Something like: SvnClient svnClient = new SvnClient(); svnClient.Update ("C:\Svn",…
Idanis
  • 1,918
  • 6
  • 38
  • 69
2
votes
0 answers

svn-update entered option (s- for all option) isn't executed

I desperately try to get a entered option for the command svn update executed. My issue is that when a versioned file is in conflict and I run the command svn update I do get provided the options, like s-showing all options or r-resolve. However…
user1632225
1
vote
4 answers

SVN Weirdness Day 2: SVN List and SVN Update Report Different Things

In a subdirectory of my svn working copy, I do svn list I see that there are 6 files in the repository (same as I see with SVNX). Nice. But in my working copy, there are two files, which are from some historical point that I do not remember. So I…
Dan Rosenstark
  • 68,471
  • 58
  • 283
  • 421
1
vote
1 answer

Auto update svn using post-commit hook

I am hosting a SVN repository and I want to set up a hook that launches after commit, so post-commit. I see a lot of scripts using C but I am not sure how and if that works on Debian. I have a Debian 32 bit server. So where would I need to set the…
Marc Went
  • 144
  • 1
  • 13
1
vote
1 answer

svn error E160013: Working copy path 'somedir/somefile' does not exist in repository

I have an svn repository which I was working with for several years. One day I ran svn update command on one of my working copies and that is what I've got: shell> svn update Updating '.': svn: E160013: Working copy path 'somedir/somefile' does not…
1234ru
  • 692
  • 8
  • 16
1
vote
0 answers

remote svn update on server farm

I wrote an svn hook that triggers upon commit. The goal is to automatically update multiple servers by running svn update on each. So my server topology consists of (all running under Windows 2012): a) SVN_server b) server1,...,N I use PsExec to…
1
vote
1 answer

What happens when SVN update command is used?

Suppose I have two files in the repository - file1, file2. What happens to my local copy when SVN update command is used in the situations below- My working copy contains only file1 (means I have deleted file2). My working copy contains file1,…
user3545797
  • 39
  • 1
  • 7
1
vote
1 answer

Why does `svn update` unlock files and what is status B

I use the Enterprise Architect which used svn lock to lock model files inside the the subversion repository. For example: >svn status K Documents\UML\eaB\B2ACB6CFF398.xml K Documents\UML\eaB\BE1936A1AE75.xml K …
Martin
  • 11,577
  • 16
  • 80
  • 110
1
vote
2 answers

Svn Status -u and ignore files from specific directory

i am running a command SVN STATUS -U, and now i want it to bring all the changes except /temporary folder. I don't have any idea how can i do this? Because i don't want to see all entries of /temporary folder when i run svn status -u (hundreds of…