For ASP. for the. NET Website, subsequent maintenance and updates are particularly important. However, each update requires manual inspection of previous version records to check all newly added, modified, or deleted files, after manually organizing these files, update them to the official host. The most troublesome thing is that we need to find a temporary directory each time, create directories one by one, and copy files one by one, after the operation is completed, compress the data and send it to the customer or ask the relevant personnel for batch updates. However, there are many "manual jobs" which may lead to errors, the file is updated to the wrong file or put in the wrong directory.
Although tortoisesvn provides functions such as create patch and apply patch, almost no tortoisesvn software is installed on the official host of the client, so it can be said that tortoisesvn is useless. So for a long time, I have been struggling to find this feature: "How can we allow tortoisesvn to only export new or modified files ?」 I have been searching for this feature for more than a year. I have been eager to write such software several times, because it is really troublesome to export different files each time.
Last Friday, this feature was finally found by me! It turns out that this feature has been in tortoisesvn for a long time, but it is hidden in the depth of the cloud. The following is a major experience to share.
First, you must first use the svn show log function to list all revisions records. Then, select "two versions" and Right-click Compare revisions.
The changed files window appears. All the differences between the two versions are listed here. Press the mouse or press Ctrl + A to select all and then right-click Export selection... export these differences.
Then, the Browse folder window appears. After selecting the Directory and pressing the OK button, the files you selected will be displayed in this directory, it also includes the structure of all directories!
Finding this function is just as happy as digging into the treasure! Pai_^