tortoisesvn

svn client timing out and corrupting WC state

天大地大妈咪最大 提交于 2020-01-02 11:00:22
问题 When I commit large changes - hundreds of megabytes - the client timesout even though the check-in does go through. When I right-click on WC and show log, TSVN shows that WC revision does NOT get updated even though the check-in actually occurred. I've tried using TortoiseSVN 1.9.5, Build 27581 - 64 Bit and command line svn version 1.9.5 (r1770682) . QUESTION Is there a way to increase the timeout of the client? 回答1: If you are using HTTP to connect to the server (as it appears to be the case

TortoiseSVN Can't connect [closed]

六月ゝ 毕业季﹏ 提交于 2020-01-02 08:35:34
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I have an apache svn server running on a shared hosting linux account. The symptom is that i can connect to the server that is hosting svn with PuTTY just fine, but the TortoiseSVN Repository Browser can't connect. I have tried svn, svn+ssh, If I try just svn I get: E730060: Unable to connect to a repository at

TortoiseSVN Can't connect [closed]

倖福魔咒の 提交于 2020-01-02 08:35:05
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I have an apache svn server running on a shared hosting linux account. The symptom is that i can connect to the server that is hosting svn with PuTTY just fine, but the TortoiseSVN Repository Browser can't connect. I have tried svn, svn+ssh, If I try just svn I get: E730060: Unable to connect to a repository at

Tortoise SVN Merge “@### must be ancestrally related to @###” Error

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-02 06:26:33
问题 Backstory : Got a job as an entry level web developer. Head developer leaves right when I start. All responsibility on me. Never used SVN. Going in blind. Problem : I keep getting errors like 'svn://svn/svn/xxx/project_name/branches/dev@330' must be ancestrally related to 'svn://svn/svn/xxx/project_name/trunk@326' The process by which I am starting the new project is: Make a directory for the project on my computer with subfolders: project_name/branches project_name/branches/dev project_name

TortoiseSVN Can't Authenticate

与世无争的帅哥 提交于 2020-01-02 05:13:29
问题 After my previous problem, TortoiseSVN Can't Connect was resolved, I ran into a new problem. On the linux server hosting my svn repository, in the repository's directory, there is a conf/svnserve.conf file. In this file, I have the option: anon-access = none | read | write Initially, this line was commented out and the default value must have been read . Of course, I want to set anon-access = none , and I want auth-access = write (which is the default). But when I set anon-access = none ,

How do I not display the dialog on SVN Tortoise Commit?

若如初见. 提交于 2020-01-02 03:49:27
问题 I have a process that modifies some files and I would like to commit them via command line tortoise SVN without having to click ok. The dialog comes up and my script is forced to wait until I click ok. Here are the arguments I am using: TortoiseProc.exe /command:commit /path:"c:\svn\MyProject" /notempfile /logmsg:"Files Modified 2010-02-12" /closeonend:3 回答1: Like @bmargulies said, just use svn.exe : cd "c:\svn\MyProject" svn commit -m "Files Modified 2010-02-12" You cannot hide the

TortoiseSVN not save the password

不羁的心 提交于 2020-01-02 03:26:25
问题 I instaled Tortoise SVN 1.8.7 in Windows 7 Professional 64 bits. The Tortoise always ask for save the password, but stiling not save :( I clear path AppData\Roaming\Subversion multiple times, but is not saving anithing on svn.simple The connection is made by a certificate. Can anybody tell me me the trick i was missing ? :) Thanks 回答1: When Tortoise SVN was not saving my user/password credentials I solved the problem by going to TortoiseSVN settings -> Saved Data -> Clear Authentication data

SVN Diff: Why are some files marked as binary

落爺英雄遲暮 提交于 2020-01-02 00:53:13
问题 Directly related: svn diff: file marked as binary type (Per the comment on the answer) Why would my SVN client mark some files as binary? Specifically, .sql has prop svn:mime-type = application/octet-stream when using TortoiseSVN. I checked Right-click > Tortoise context menu > Settings > General > Subversion configuration file, and nothing is uncommented in [miscellany] or [auto-props] , so where is the decision coming from? From what I can see in the related posts, I can "fix it" by either

Deleting committed test folders / files on Google Code?

霸气de小男生 提交于 2020-01-01 17:18:46
问题 Is there a way to remove the test folders and files that I have committed to a Google Code branch? 回答1: You can use svn delete your_file to delete the file, and, then, use svn commit to push the deletion to the server -- but note that will not delete anything from the SVN history : the way SVN works is to keep a trace of everything, which means permanently deleting something is not " allowed ". If you want to completly remove a file from the repository's history, it's a lot harder, and will

Deleting committed test folders / files on Google Code?

老子叫甜甜 提交于 2020-01-01 17:18:06
问题 Is there a way to remove the test folders and files that I have committed to a Google Code branch? 回答1: You can use svn delete your_file to delete the file, and, then, use svn commit to push the deletion to the server -- but note that will not delete anything from the SVN history : the way SVN works is to keep a trace of everything, which means permanently deleting something is not " allowed ". If you want to completly remove a file from the repository's history, it's a lot harder, and will