Reputation: 169
I will use an SVN working copy in the office and at home. Is it safe to use the same SVN user for them? Can I simply commit something in the office, then make an update at home, continue the work and make new modifications in the repo etc?
Thank you in advance. Best regards: Balazs
Upvotes: 1
Views: 132
Reputation: 29715
Yes, you can! SVN checks out two different Workingcopies.
SVN does not keep track of checked out workingcopies or the user.
If you commit something it sends the request to the server and the server checks:
If both checks went fine it will transfer the content(as difference to the previous version) and creates a new revision. This is fully independent from the number of working copies. A valid analogy would be to use login to StackOverflow from your home and office computer. This both works as well :) .
Upvotes: 1