Add file to TortoiseSVN directory

Simple question.

I need to get a file that was added to the directory by another developer, but I do not want to update any other files in the directory. How can I only update this 1 file if I don't have it? commit + update is not an option.

+3
source share
4 answers

Just find the file in the repo browser, right-click and select "Copy to working copy."

+1
source

Right-click the working copy folder, select Check for Changes. In this dialog box, click the Check Repository button.

CfM. , "" .

+2

, : , , TortoiseSVN > RepoBrowser, , .

, , , Update to Revision , , ... , .

+1

svn up filename? ( , cli)

According to another answer, it Copy to Working Copymay not be what you want to do. It creates a new file and svn addits working copy. Your piercing copy does not know that someone has committed such a file (until you commit it)

+1
source

All Articles