How to diagnose specific SVN symptoms [closed]
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this questionI began having SVN problems recently. I have a project which is worked on by 2 developers. I am one of them.
When I check something in, my partner can get my updates. When my partner checks something in, and I update, I can not get any of her changes.
Do these symptoms sound familar to anyone? How can I go about 开发者_如何学JAVAfixing them?
Thank you!
I would definitely trust the Subversion service and would bet that your svn update
is working fine.
First, I would verify that the other developer's svn commit
was successful. Just right click anywhere in Windows Explorer, select TortoiseSVN, & click Repo-browser. You can type in your repository address here, and view the history of everything that was committed to that branch. [Note: I'm assuming your client is Tortoise from the tag on this question.]
If you do see her commit listed in the Subversion logs, then make sure you are doing the update properly using this guide: http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-update.html Any conflicts will require an svn merge
operation!
Also make sure you have the lastest TortoiseSVN, or you may be affected by this bug: http://tortoisesvn.net/faq.html#incompleteupdate
(And by the way, I like the format of the question "how would you diagnose...?")
Try this:
svn --set-depth infinity <your-local-folder>
And then do an svn update.
Also, look here: http://tortoisesvn.tigris.org/faq.html#incompleteupdate
Update your TortoiseSVN and try with a new checkout.
精彩评论