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
1
vote
1 answer

Only update SVN branch folders during SVN update

Suppose you have this SVN structure: \app \app\trunk\ \app\trunk\file1 \app\trunk\file2 \app\branches\ \app\branches\branch1\file1 \app\branches\branch2\file1 \app\branches\branch2\file2 \app\tags\ Suppose we created two new branches for two…
JustBeingHelpful
  • 18,332
  • 38
  • 160
  • 245
1
vote
1 answer

Check updates in specific directory in svn c#

I'm trying to check if a certain svn subdirectory was updated, and if so, update my entire working directory. Here is what I do: SvnClient svnClient = new SvnClient(); SvnWorkingCopyClient workingCopyClient = new…
Idanis
  • 1,918
  • 6
  • 38
  • 69
1
vote
1 answer

SVN Working copy ' locked. Clean up too not working

I was trying to update my SVN folder and then I found conflicts. With out resolving any conflicts I just closed command propmpt. From then When ever I am trying to : SVN up Getting th error SVN Working copy ' locked. Also clean up fails with the…
Simsons
  • 12,295
  • 42
  • 153
  • 269
1
vote
1 answer

How to see when "svn up" was issued to update to a given revision

Is it possible to check when in time a file/working copy was updated locally to a specific revision (i.e. even if local files got overwritten by say further revision updates)?
type
  • 1,137
  • 2
  • 9
  • 16
1
vote
1 answer

svn update and existing files - need files from repository

when I commit to svn repositary file FILE.TXT and in other computer I want update from this repository, but in directory FILE.TXT exist..its write some svn: Failed to add file 'FILE.TXT': object of the same name already exists It can do with svn…
Pavel Severýn
  • 255
  • 2
  • 10
1
vote
1 answer

Linux and SVN: Need a shelll script to transfer updated files to test server after making an svn update

The task/problem is: We wish to follow a proper development methodology using SVN. The projects will be in PHP, Apache server and Linux OS. The process should be as Developers work on the code on their local copy(local machine). The local copy is…
Pranav
  • 21
  • 2
0
votes
1 answer

Is it possible to create a log of all `svn update` calls

I am wondering whether there is any way to: On any existing repo, see a log of all users that have updated (And the revision they updated to). or With extra configuration, create a repository where [1] will be possible from then on. I don't think…
Andrew Stubbs
  • 4,322
  • 3
  • 29
  • 48
0
votes
1 answer

How to undo an svn update with staged changes?

I've been removing lots of files from an SVN branch using: svn rm filename rm -rf filename When I ran svn status, I saw all of the files I deleted listed as deleted and ready to commit. Before committing the changes, I ran svn update. This caused…
Travis
  • 4,018
  • 4
  • 37
  • 52
0
votes
0 answers

SVN - How to correctly "Update to revision" when current revision has external?

I have a repo checked out on my PC and in rev#244 I added an external to my repo /src/Common/Build Actions The "Build Actions" folder is the extenal. This "Build Actions" folder did exist in the "Common" folder before this untill 244, but not as an…
0
votes
1 answer

Update a merged but not committed svn branch

I have a svn branch, say feature, created from trunk. I am ready to merge my feature branch into trunk, so I did this: cd trunk/ svn merge After doing this, I am not ready to commit/push the changes to trunk yet. BUT I want…
Rahul Bharadwaj
  • 2,555
  • 2
  • 18
  • 29
0
votes
1 answer

Build project blocked in svn repository update

I am not able to build a java project with ant, and when i launch the build the process gets blocked in the updating from the svn repository: [projectBuild] ... background task: Building workspace (Done) sub_updateView: [echo] Updating…
rainman
  • 2,551
  • 6
  • 29
  • 43
0
votes
1 answer

How to checkout only a particular subdirectory given parent directory is not checkedout

Say, I have checkout a empty branch foo/ and, I want to simply checkout only a particular subdirectory somewhat deep inside, say foo/1/2/3/4 I am only interested in checkout the full subdirectory 4, nothing else. I tried svn up foo/1/2/3/4 but…
Saurav Sahu
  • 13,038
  • 6
  • 64
  • 79
0
votes
1 answer

svn - Revert to an old commit on a different branch

I am working on a project which use svn. I checkout the latest version of it in a directory (using svn checkout http://url /path/to/dest). I've done some modification, so I svn add the modified files, and then svn commit the changes. Unfortunately,…
user96649
  • 471
  • 1
  • 5
  • 22
0
votes
1 answer

SVN- overwrite a specific file from SVN

I use svn on Linux. I did svn update succesfully. After I did the update I wanted to see the status so I did svn status. I can see that I have 3 files with M (e.g M sarit/src/main.cpp). How can I force those files to update/overwrite?
sara8
  • 199
  • 3
  • 11
0
votes
1 answer

See log in cmd line after svn update to revision

If I update to an older revision: svn update -rXXXX and then try to list the log: svn log I only see entries up to the revision XXXX. How can I see the newer ones?
NPS
  • 6,003
  • 11
  • 53
  • 90