user481913
user481913

Reputation: 1018

TortoiseSVN import

My developer gave me a compressed file for the whole project from his Subversion working copy.

I uncompressed that file and used TortoiseSVN import to put it into my repository which I host with projectlocker (an SVN-hosting provider).

I want to know:

  1. I want to view the files and the code that has changed since the last revision. After doing the import, the latest revision is at 8. I want to see what files and code has changed between revision number 8 and revision number 7 and maybe able to compare all of it upto revision number 1.

Can I do this?

  1. How do I view these changes in projectlocker (or if it's the similar process with every SVN host provider)?

Upvotes: 1

Views: 738

Answers (2)

k3b
k3b

Reputation: 14755

If the repository is not remote accessable, @Guy-s "using a backup of the repository" works perfectly as long @user481913 only wants to read.

What if @user481913 wants to check in changes?

I am not sure if there is a waIf to synchronize to svn-repositories.

Since I am in a similar situation I am using the Git sourcecontrolsystem that works offline and can syncronise with a Subversion repository. There is also a TortoiseGit.

Upvotes: 0

Guy Sirton
Guy Sirton

Reputation: 8401

If your developer simply compressed all the files from his working copy you will not get any history with the files.

If you want to export the entire Subversion history you need to use the dump and load svnadmin commands, see Moving a Subversion Repository to Another Server

To get the svnadmin command, you may need a Subversion server to be installed. Since you're using Windows VisualSVN maybe what you need is http://www.visualsvn.com/server/.

Yet another option is simply to access the same Subversion repository your developer is using.

Once you have the repository TortoiseSVN's Show Log (right click) will show you the changed files between revisions. If you click on a folder you see all the changes in the hierarchy. You can then drill down and diff the individual files.

Upvotes: 1

Related Questions