User Bert Huijben - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T22:00:40Zhttp://stackoverflow.com/feeds/user/2094http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1846050/google-code-svn-migration/1846123#18461232Answer by Bert Huijben for Google Code svn migrationBert Huijben2009-12-04T10:29:57Z2009-12-04T10:29:57Z<p>You can 'svnsync' the data from Google code to a local repository on your pc. You can then use 'svnadmin' to create a dump file from that and send that to your new hosting provider or in some cases you can use svnsync to upload to the repository. </p>
<p>The only public hosting I know that supports svnsync upload is Google code (it requires clearing the repository first), which most likely doesn't help you, but there might be others now.</p>
http://stackoverflow.com/questions/1831295/svn-can-not-parse-lock-entries-hashfile/1834356#18343560Answer by Bert Huijben for svn : Can not Parse lock / entries hashfile Bert Huijben2009-12-02T17:06:23Z2009-12-02T17:06:23Z<p>This sounds like a corrupted working copy. (Missing/corrupted files in the .svn subdirectory of your project).</p>
<p>I would recommend verifying the issue with another subversionclient (E.g. TortoiseSVN or the svn client), and then checking out a new working copy.</p>
http://stackoverflow.com/questions/143130/how-to-synchronize-two-subversion-repositories/1826751#18267510Answer by Bert Huijben for How to synchronize two subversion repositories?Bert Huijben2009-12-01T15:01:19Z2009-12-01T15:01:19Z<p>If one of the repositories is fully read only you can use 'svnsync' to keep it up to date with the master repository. This tool is often used in combination with the proxy support to create a master slave setup. </p>
<p>E.g. Apache does this to mirror their repository to different continents. The master repostitory is located in the US, but if I access the repository from the EU I get a local mirror that works just as well as the master server.</p>
http://stackoverflow.com/questions/1802731/what-are-the-hurdles-and-dangers-when-migrating-from-visual-sourcesafe-to-svn/1802876#18028761Answer by Bert Huijben for What are the hurdles and dangers when migrating from Visual SourceSafe to SVN?Bert Huijben2009-11-26T10:31:52Z2009-11-26T11:27:13Z<p>There are several tools that can migrate history for you. We used <a href="http://www.pumacode.org/projects/vss2svn" rel="nofollow">VSS2SVN</a> a few years ago to make this same step.</p>
<p>You can use multiple subversion clients side by side. Almost every Windows user of Subversion I know uses TortoiseSVN and for integration in Visual Studio you can use AnkhSVN (Free, full SCC provider for VS 2005+ since AnkhSVN 2.0) and VisualSVN (Commercial; Uses TortoiseSVN with its own extensions and provides SCC-like features in VS 2003+).</p>
<p>I would recommend also installing a normal commandline SVN install for use by scripts.</p>
<p>See <a href="http://stackoverflow.com/questions/24045/ankhsvn-versus-visualsvn">AnkhSVN vs VisualSVN</a> for more comparisons between VisualSVN and AnkhSVN. But note that all the clients (TortoiseSVN, AnkhSVN, VisualSVN) are just a shell over the same libraries, so you can switch between them any time you like.</p>
http://stackoverflow.com/questions/1679099/netbeans-subversion-authentication-failed/1679388#16793880Answer by Bert Huijben for netbeans subversion authentication failedBert Huijben2009-11-05T09:35:02Z2009-11-05T09:35:02Z<p>Do you use SvnKit in your netbeans application?</p>
<p>RapidSVN always uses the standard subversion libraries, so there could be a difference between these two.. especially in how they store credentials in the keystores.</p>
http://stackoverflow.com/questions/1673586/any-latest-experiences-from-recent-daily-build-of-ankhsvn/1674435#16744353Answer by Bert Huijben for Any latest experiences from recent daily build of AnkhSVN?Bert Huijben2009-11-04T15:14:06Z2009-11-04T15:14:06Z<p>AnkhSVN and TortoiseSVN use the same administrative data that is stored in your working copy. This store is used for all management, so they will always see each other administrative changes and the design of the subversion core libraries makes sure they can't break the working copy for each other.</p>
<p>Both products have their own status caches to speed up the showing of the glyphs/icons/overlays. These caches are not essential for the functionality of the products but most users prefer them to be accurate anyway. These glyphs can be out of date in both clients, but refreshing will fix them directly.</p>
<p>The latest stable release of AnkhSVN listens to some of the communication between TortoiseSVN and the Windows explorer to keep the status cache even better up to date than the previos version. (In most cases glyphs will now directly change in AnkhSVN.. just like in the Explorer..)</p>
<p>But even before those changes most AnkhSVN users didn't have any real issues using these clients side by side (or even with more clients), as ultimately the source code handling only relies on the administrative data.</p>
http://stackoverflow.com/questions/1621167/how-do-i-know-if-a-branch-has-already-been-merged-in-svn-mercurial-git/1621699#16216992Answer by Bert Huijben for How do I know if a branch has already been merged in SVN/Mercurial/Git?Bert Huijben2009-10-25T18:50:46Z2009-10-25T18:50:46Z<p>Type:</p>
<pre><code>svn help mergeinfo
</code></pre>
<p>And you get:</p>
<pre><code>mergeinfo: Display merge-related information.
usage: mergeinfo SOURCE[@REV] [TARGET[@REV]]
Display information related to merges (or potential merges) between
SOURCE and TARGET (default: '.'). If the --show-revs option
is not provided, display revisions which have been merged from
SOURCE to TARGET; otherwise, display the type of information
specified by the --show-revs option.
Valid options:
-r [--revision] ARG : ARG (some commands also take ARG1:ARG2 range)
A revision argument can be one of:
NUMBER revision number
'{' DATE '}' revision at start of the date
'HEAD' latest in repository
'BASE' base rev of item's working copy
'COMMITTED' last commit at or before BASE
'PREV' revision just before COMMITTED
--show-revs ARG : specify which collection of revisions to display
('merged', 'eligible')
</code></pre>
http://stackoverflow.com/questions/1544990/wix-major-upgrade-doesnt-completely-install-app-on-downgrade/1585925#15859250Answer by Bert Huijben for WiX "Major Upgrade" doesn't completely install app on downgradeBert Huijben2009-10-18T20:18:45Z2009-10-18T20:18:45Z<p>How did you order the operations in your InstallExecuteSequence?</p>
<p>If you perform the uninstall after the install (which gives you the best upgrade performance) you might see issues if file versions change to lower versions; wjoch could be the case on your downgrades.</p>
<p>Windows installer will not overwrite older versions with newer versions unless explicitly asked.</p>
<p>Reordering to uninstall before installing should help if this is the case.</p>
http://stackoverflow.com/questions/1565199/svn-post-commit-hook-find-folder-to-which-commit-was-done/1566647#15666471Answer by Bert Huijben for SVN post commit hook - find folder to which commit was doneBert Huijben2009-10-14T14:27:47Z2009-10-14T14:27:47Z<p>I would recommend using a continuous integration server like <a href="http://confluence.public.thoughtworks.org/display/CCNET/Welcome+to+CruiseControl.NET" rel="nofollow">CruiseControl.NET</a> over using a post commit hook for integration tasks.</p>
<p>These tools can easily monitor your repository for changes below specific urls, but they don't have to be run with the same privileges as your subversion server. In particular they can never corrupt your repository. You can just run them on any (old) server, while you can run your repository on a more prominent/stable/backed up server.</p>
http://stackoverflow.com/questions/1527375/get-credentials-from-sharpsvn-in-c/1527829#15278290Answer by Bert Huijben for Get credentials from SharpSvn in C#Bert Huijben2009-10-06T20:09:02Z2009-10-06T20:09:02Z<p>Sharpsvn doesn't have an api that provides you the credentials from Subversion. It mostly implements the libsvn_client api, and at this level there is no access to this data.</p>
<p>SharpSvn gets a callback from the subversion libraries when these need credentials; in most cases after the builtin password store fails to authenticate.</p>
<p>If your svnmucc code also uses the Subversion apis, you can just plugin the subversion predefined authentication handlers..</p>
<p>SharpSvn itself doesn't have svnmucc support yet. (There was some talk about somebody who liked to add this to SharpSvn, but I haven't got any news about this lately)</p>
http://stackoverflow.com/questions/1458457/find-the-file-with-a-given-svn-url-within-a-svn-working-copy/1458688#14586882Answer by Bert Huijben for Find the file with a given SVN URL within a SVN working copyBert Huijben2009-09-22T07:51:50Z2009-09-22T07:51:50Z<p>Subversion doesn't use this backward mapping from url to working copy location itself. The most stable way to check for the url use would be to perform a recursive 'svn info' call over the working copy.</p>
<p>This gives you the url for all files and directories and you can do the matching yourself.</p>
<p>You could optimize this a bit by trying to map the urls on local paths and only look at sensible locations, but you would miss other locations created by 'svn switch'.</p>
<p>I don't know how 'svn info' is mapped in the python bindings, but there is most likely some info2() function on a client class you can use.</p>
http://stackoverflow.com/questions/1436935/can-i-use-a-text-file-to-set-svnextertnals-in-sharpsvns-setproperty-method/1437817#14378170Answer by Bert Huijben for Can I use a text file to set svn:extertnals in sharpSVN's setproperty() method ?Bert Huijben2009-09-17T09:58:42Z2009-09-22T07:36:29Z<p>SharpSvn doesn't handle the file reading for you; it just allows setting properties.</p>
<pre><code>using(SvnClient client = new SvnClient())
{
string val = File.ReadAllText("C:\\My\\file.txt");
client.SetProperty("C:\\WorkDir", SvnPropertyNames.SvnExternals, val);
}
</code></pre>
http://stackoverflow.com/questions/1422530/how-can-i-read-a-file-using-sharpsvn-client-using-c/1424206#14242060Answer by Bert Huijben for How Can I read a file using sharpsvn client using c#Bert Huijben2009-09-14T22:23:25Z2009-09-14T22:23:25Z<p>You probably want <a href="http://docs.sharpsvn.net/current/html/M_SharpSvn_SvnClient_Write_1.htm" rel="nofollow">SvnClient.Write</a>()... This allows writing specific versions of a file to a stream.</p>
http://stackoverflow.com/questions/1409392/how-to-move-a-subproject-to-a-new-folder-in-visual-studio-2008-without-breaking/1420670#14206702Answer by Bert Huijben for How to move a subproject to a new folder in Visual Studio 2008 without breaking (ankhsvn) subversion revision history?Bert Huijben2009-09-14T10:07:25Z2009-09-14T22:22:22Z<p>Just rename the folder. This should work in all cases except for case-only changes and AnkhSVN will handle the hard work.</p>
<p>For this last category you can rename to a different name, commit... update all working copies (e.g. wait a day).. and then rename to the final name. (Case only renames are not supported by Subversion)</p>
<p>It looks like Subversion 1.7 will support case only renames, but it will take some time for that to be released.</p>
http://stackoverflow.com/questions/1263750/allowing-the-local-aspnet-account-to-excute-sharpsvn-createrepository/1408074#14080740Answer by Bert Huijben for Allowing the local aspnet account to excute SharpSvn.CreateRepositoryBert Huijben2009-09-10T22:32:07Z2009-09-10T22:32:07Z<p>Did you check the NTFS permissions on the location where you are trying to create the repository?</p>
<p>Depending on your asp.net settings the user that needs create rights there is either the ASP.Net/Network Service account or the logged on user (Anonymous internet user, or the user connected to the site if you use Windows authentication)/</p>
<p>You can force ASP.Net to run as a specific user with the settings in the web.config</p>
http://stackoverflow.com/questions/1377258/using-the-current-http-request-identity-as-the-default-credentials-for-sharpsvn/1398610#13986100Answer by Bert Huijben for Using the current HTTP request identity as the default credentials for SharpSVNBert Huijben2009-09-09T09:43:27Z2009-09-09T09:43:27Z<p><code>CredentialCache.DefaultCredentials</code> contains a token of the current credentials. It doesn't provide the actual username and/or password.</p>
<p>You would need the exact username and password to pass them to the Subversion libraries via SharpSvn.</p>
http://stackoverflow.com/questions/1380685/how-can-i-get-access-to-the-svn-pre-commit-message-using-sharpsvn/1398592#13985920Answer by Bert Huijben for How can i get access to the SVN pre-commit message using SharpSVN?Bert Huijben2009-09-09T09:40:38Z2009-09-09T09:40:38Z<p>Using a recent <a href="http://sharpsvn.net/" rel="nofollow">SharpSvn</a> release you can use</p>
<pre><code>SvnHookArguments ha;
if (!SvnHookArguments.ParseHookArguments(args, SvnHookType.PreCommit, false, out ha))
{
Console.Error.WriteLine("Invalid arguments");
Environment.Exit(1);
}
</code></pre>
<p>to parse the arguments of a pre-commit hook and then use</p>
<pre><code>using (SvnLookClient cl = new SvnLookClient())
{
SvnChangeInfoEventArgs ci;
cl.GetChangeInfo(ha.LookOrigin, out ci);
// ci contains information on the commit e.g.
Console.WriteLine(ci.LogMessage); // Has log message
foreach (SvnChangeItem i in ci.ChangedPaths)
{
}
}
</code></pre>
<p>to get to the log message, changed files, etc.</p>
http://stackoverflow.com/questions/1369052/subversion-ankhsvn-files-disapear-from-solution-explorer/1369479#13694792Answer by Bert Huijben for subversion ankhsvn files disapear from solution explorerBert Huijben2009-09-02T18:49:00Z2009-09-02T18:49:00Z<p>This issue is also reported by TFS users (See google), so it is most likely a Visual Studio bug. It would be nice if somebody found out a way to reproduce this issue. That would finally enable Microsoft to fix this issue.</p>
http://stackoverflow.com/questions/1364853/unexpected-subversion-conflict-behavior-conflict-with-no-conflicts/1365172#13651721Answer by Bert Huijben for Unexpected subversion conflict behavior (Conflict with no conflicts)Bert Huijben2009-09-01T23:36:29Z2009-09-01T23:36:29Z<p>Is your file treated as binary by Subversion?
(To check: Does it have a svn:mime-type property that doesn't start with text/?)</p>
<p>In that case no markings will be added, and all local changes will be seen as conflicts when a new update arrives. Diff editors that guess the filetype won't have an issue resolving these conflicts.</p>
http://stackoverflow.com/questions/1357244/best-practices-for-storing-an-asp-net-web-site-in-subversion/1357541#13575410Answer by Bert Huijben for Best practices for storing an ASP.NET web site in Subversion?Bert Huijben2009-08-31T13:45:43Z2009-08-31T13:45:43Z<p>You should add the .refresh files; not the real DLLs.</p>
<p>The Visual Studio project system sends a list of files that should be added to source control to SCC Providers. AnkhSVN is a Subversion SCC provider that uses this information to suggest adding these files (and not the other files).</p>
<p>VisualSVN and other Subversion clients that only look at file extensions don't get this information from ASP.Net.</p>
<p>(Note: if you remove the .refresh file, Visual Studio will add the DLL to the list of files that should be committed)</p>
http://stackoverflow.com/questions/1342723/is-there-a-way-to-automatically-push-svn-configuration-settins-from-the-server-to/1345496#13454960Answer by Bert Huijben for Is there a way to automatically push svn configuration settins from the server to the clients?Bert Huijben2009-08-28T07:12:58Z2009-08-28T07:12:58Z<p>You can push registry settings to Windows users logged on a Domain via Group Policy. You can also set a config file in the 'all users' location (E.g. /etc, /usr/local/etc or C:\Documents and Settings\All Users\Application Data\Tigris\Subversion).</p>
http://stackoverflow.com/questions/1308036/what-source-version-control-to-use-for-home/1310711#13107113Answer by Bert Huijben for What source/version control to use for home?Bert Huijben2009-08-21T08:28:47Z2009-08-21T08:28:47Z<p>We use svnsync in a cron job to replicate the repositories between separate locations. (And we use a normal backup on the primary site).</p>
http://stackoverflow.com/questions/824386/how-to-set-author-of-svn-commit-using-sharpsvn-library-in-c/824876#8248764Answer by Bert Huijben for How to set author of SVN commit using SharpSVN library in c#Bert Huijben2009-05-05T13:32:48Z2009-08-14T07:45:42Z<p>This all depends on how you connect to your repository, as the repository is responsible for adding a username to the revision. (It usually copies the credentials for the connections but it doesn't have to do that).</p>
<p>When you use a file:/// repository (which is usually not recommended - See <a href="http://svnbook.red-bean.com/" rel="nofollow">The Subversion Book</a>) you can work around this directly on the commit.</p>
<pre><code>using (SvnClient client = new SvnClient())
{
client.Authentication.Clear(); // Clear predefined handlers
// Install a custom username handler
client.Authentication.UserNameHandlers +=
delegate(object sender, SvnUserNameEventArgs e)
{
e.UserName = "MyName";
};
SvnCommitArgs ca = new SvnCommitArgs { LogMessage = "Hello" }
client.Commit(dir, ca);
}
</code></pre>
<p>If you connect to a remote repository you can change the author of a revision when a pre-revprop-change hook is installed in the repository (See <a href="http://svnbook.red-bean.com/" rel="nofollow">The Subversion Book</a>)</p>
<pre><code>using (SvnClient client = new SvnClient())
{
client.SetRevisionProperty(new Uri("http://my/repository"), 12345,
SvnPropertyNames.SvnAuthor,
"MyName");
// Older SharpSvn releases allowed only the now obsolete syntax
client.SetRevisionProperty(
new SvnUriTarget(new Uri("http://my/repository"), 12345),
SvnPropertyNames.SvnAuthor,
"MyName");
}
</code></pre>
<p>[2009-08-14]
More recent SharpSvn releases also allow this:</p>
<pre><code>using (SvnRepositoryClient rc = new SvnRepositoryClient())
{
SvnSetRevisionPropertyRepositoryArgs ra;
ra.CallPreRevPropChangeHook = false;
ra.CallPostRevPropChangeHook = false;
rc.SetRevisionProperty(@"C:\Path\To\Repository", 12345,
SvnPropertyNames.SvnAuthor, "MyName", ra);
}
</code></pre>
<p>This last example assumes direct file access to the repository, but it bypasses repository hooks for optimal performance.</p>
http://stackoverflow.com/questions/1258191/sharpsvn-get-post-commit-hook-with-svnlookclient/1259144#12591442Answer by Bert Huijben for SharpSVN get post-commit-hook with 'SvnLookClient' Bert Huijben2009-08-11T08:53:01Z2009-08-11T09:04:07Z<p>The SvnLook client is specifically targetted for using in repository hooks. It allows access to uncommited revisions and therefore needs other arguments. (It's the SharpSvn equivalent of the 'svnlook' command. If you need a 'svn' equivalent you should look at SvnClient).</p>
<p>A look origin is either:
* A repository path and a transaction name
* or a repository path and a revision number</p>
<p>E.g. in a pre-commit hook the revision is not committed yet, so you can't access it over the public url, like you would normally do.</p>
<p>The documentation says (in pre-commit.tmpl):</p>
<pre><code># The pre-commit hook is invoked before a Subversion txn is
# committed. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-commit' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH (the path to this repository)
# [2] TXN-NAME (the name of the txn about to be committed)
</code></pre>
<p>SharpSvn helps you by offering:</p>
<pre><code>SvnHookArguments ha;
if (!SvnHookArguments.ParseHookArguments(args, SvnHookType.PostCommit, false, out ha))
{
Console.Error.WriteLine("Invalid arguments");
Environment.Exit(1);
}
</code></pre>
<p>Which parses these arguments for you. (Which in this case is very simple, but there are more advanced hooks.. And hooks can receive new arguments in newer Subversion version). The value you need is in the .LookOrigin property of ha.</p>
<p>If you just want to have the log message for a specific revision range (1234-4567) you should not look at the SvnLookClient.</p>
<pre><code>using(SvnClient cl = new SvnClient())
{
SvnLogArgs la = new SvnLogArgs();
Collection<SvnLogEventArgs> col;
la.Start = 1234;
la.End = 4567;
cl.GetLog(new Uri("http://svn.collab.net/repos/svn"), la, out col))
}
</code></pre>
http://stackoverflow.com/questions/868701/how-to-check-if-file-is-under-source-control-in-sharpsvn/1252348#12523480Answer by Bert Huijben for How to check if file is under source control in SharpSvn?Bert Huijben2009-08-09T21:35:28Z2009-08-09T21:35:28Z<p>If you only want to know if the file is under source control you could use .Info() / .GetInfo(). That method is generally faster as it doesn't have to check if the file has changed since it was checked out.</p>
http://stackoverflow.com/questions/1242814/sharpsvn-createdirectories/1252336#12523361Answer by Bert Huijben for SharpSvn CreateDirectoriesBert Huijben2009-08-09T21:29:12Z2009-08-09T21:29:12Z<p>You can use SvnClient.RemoteCreateDirectories. (And don't forget to add a log message to the args class, or to handle the Committing event on the Client).</p>
<p>Authentication is handled via the helper class on SvnClient.Authentication. E.g. you could use the .DefaultCredentials on that class. By default SharpSvn falls back on your already cached subversion credentials.</p>
http://stackoverflow.com/questions/1246263/get-log-details-for-a-specific-revision-number-in-a-post-commit-hook-with-sharpsv/1252330#12523301Answer by Bert Huijben for Get log details for a specific revision number in a post-commit hook with SharpSVN?Bert Huijben2009-08-09T21:25:17Z2009-08-09T21:25:17Z<p>In hook clients you most likely want to use the SvnLookClient that directly accesses the repository. In this example (copied from another question here) I also use the SvnHookArguments class for parsing the hook arguments.</p>
<pre><code>static void Main(string[] args)
{
SvnHookArguments ha;
if (!SvnHookArguments.ParseHookArguments(args, SvnHookType.PostCommit, false, out ha))
{
Console.Error.WriteLine("Invalid arguments");
Environment.Exit(1);
}
using (SvnLookClient cl = new SvnLookClient())
{
SvnChangeInfoEventArgs ci;
cl.GetChangeInfo(ha.LookOrigin, out ci);
// ci contains information on the commit e.g.
Console.WriteLine(ci.LogMessage); // Has log message
foreach(SvnChangeItem i in ci.ChangedPaths)
{
//
}
}
}
</code></pre>
http://stackoverflow.com/questions/1215000/httpcontext-current-user-not-populated-with-windows-authentication-enabled/1250097#12500970Answer by Bert Huijben for HttpContext.Current.User not populated with Windows Authentication enabledBert Huijben2009-08-08T23:06:45Z2009-08-08T23:06:45Z<p>Where do you check for this user? In the request cycle there are some events fired before the authorization takes place.</p>
<p>If you are testing on Vista, Windows 7 or Windows Server 2008 there can be other differences, because the ASP.Net and IIS pipeline are integrated on IIS 7's default configuration.</p>
http://stackoverflow.com/questions/227230/visual-studio-solution-explorer-locks-up/1241734#12417340Answer by Bert Huijben for Visual Studio Solution Explorer Locks UpBert Huijben2009-08-06T21:52:17Z2009-08-06T21:52:17Z<p>If solutions start behaving badly one of the first things I would try is if deleting the .suo file helps. This file contains information about the current designer and Window state (and more).</p>
<p>Deleting this allows reopening the solution just like when it was just checked out from source control, without designer crashes etc.</p>
<p>If you have some add-in problems, running 'devenv.exe /resetskippkgs' might help. (This re-enables add-ins that have been disabled after previous errors)</p>
http://stackoverflow.com/questions/1205621/whats-the-most-widely-used-documentation-tool-for-c/1205625#12056258Answer by Bert Huijben for Whats the most widely used documentation tool for C#?Bert Huijben2009-07-30T10:00:52Z2009-07-30T10:19:13Z<p>The default documentation format is the /// xml documentation you see in most sample code. It is parsed by the C# compiler, which creates a .xml file containing the exact location and the custom Xml. Visual Studio can use this xml for intellisense and there are a few tools that can turn this xml in pretty html.</p>
<ul>
<li><a href="http://ndoc.sourceforge.net/" rel="nofollow">NDoc</a> was the most common tool in the past, but lacks .Net 2.0 support.</li>
<li><a href="http://www.codeplex.com/Sandcastle" rel="nofollow">SandCastle</a> is a more modern variant and is now used by Microsoft to generate the MSDN help.</li>
</ul>
<p>Another useful helper is <a href="http://submain.com/GhostDoc/" rel="nofollow">Ghostdoc</a> that can generate a help template on clicking a shortcut like Ctrl+Shift+D in Visual Studio.</p>
http://stackoverflow.com/questions/1821983/subversion-misses-new-directories-during-update/1822045#1822045Comment by Bert Huijben on Subversion misses new directories during updateBert Huijben2009-12-01T14:39:47Z2009-12-01T14:39:47ZA bug in the early 1.6.x releases added new locally added directories as sparse. This command will solve that. Recent 1.6.x clients don't have this issue any morehttp://stackoverflow.com/questions/1825672/write-current-svn-version-into-text-file/1825726#1825726Comment by Bert Huijben on Write current svn version into text fileBert Huijben2009-12-01T14:19:08Z2009-12-01T14:19:08ZIf you pass a URL to svn without a revision via -r or PEG revisions (@...) you always ask for HEAD, so you can leave the -rHEAD out in your example.http://stackoverflow.com/questions/1799910/accessing-svnmergeinfo-via-sharpsvn/1799985#1799985Comment by Bert Huijben on Accessing svn:mergeinfo via SharpSvnBert Huijben2009-11-26T10:35:07Z2009-11-26T10:35:07ZYou can just pass fileName as there is an implicit conversion from System.String to SvnTarget (creating a SvnPathTarget). There is also an automatic conversion from System.Uri to SvnTarget (creating a SvnUriTarget).http://stackoverflow.com/questions/1745012/svn-operation-time-on-vista-windows-7-2008-rc2/1745216#1745216Comment by Bert Huijben on SVN operation time on Vista/Windows 7/2008 RC2Bert Huijben2009-11-23T09:14:35Z2009-11-23T09:14:35ZSometimes having a Windows Explorer window open on a folder being updated by AnkhSVN can slowdown things considerable.
(In this case TortoiseSVN's external cache process is continuously scanning the directory for changes...)http://stackoverflow.com/questions/1698033/can-i-use-team-explorer-2010-with-visual-studio-2008/1702481#1702481Comment by Bert Huijben on Can i use Team Explorer 2010 with Visual Studio 2008?Bert Huijben2009-11-10T10:24:02Z2009-11-10T10:24:02ZIf I read the question correctly, the question was if the client was compatible with the Studio.. not if it was compatible with a newer TFS server?http://stackoverflow.com/questions/1705821/install-subversion-repositories-in-my-godaddy-shared-hosting-account/1705879#1705879Comment by Bert Huijben on Install subversion repositories in my GoDaddy Shared hosting accountBert Huijben2009-11-10T10:22:53Z2009-11-10T10:22:53ZYou can also install the free (as in beer) VisualSVN server. You can use that server with any (free or not) client.http://stackoverflow.com/questions/1704873/svn-setup-permission-issuesComment by Bert Huijben on svn setup permission issuesBert Huijben2009-11-10T10:20:58Z2009-11-10T10:20:58ZIt is probably more usefull to give information on your linux distribution than on which program you are trying to install.http://stackoverflow.com/questions/1556136/svn-how-to-take-a-file-off-the-version-control/1556172#1556172Comment by Bert Huijben on SVN - how to take a file off the version controlBert Huijben2009-10-12T20:46:05Z2009-10-12T20:46:05ZThe best alternative is the "ignore-on-commit" changelist in TortoiseSVN. Files on this list will be unchecked by default in the TortoiseSVN commit dialoghttp://stackoverflow.com/questions/1556136/svn-how-to-take-a-file-off-the-version-control/1556172#1556172Comment by Bert Huijben on SVN - how to take a file off the version controlBert Huijben2009-10-12T20:44:54Z2009-10-12T20:44:54ZSvn can only ignore not-versioned files. Files that are version controlled will never ignored.http://stackoverflow.com/questions/1511858/help-me-understand-svn-merge/1511887#1511887Comment by Bert Huijben on Help me understand Svn mergeBert Huijben2009-10-02T22:05:49Z2009-10-02T22:05:49ZUnless you have specific filetypes that aren't handled properly by the builtin diff you could leave out the '--diff3-cmd=' part, as the subversion builtin merge normally handles things just fine.http://stackoverflow.com/questions/1477901/several-developers-and-one-subversions-working-folder/1477975#1477975Comment by Bert Huijben on Several developers and one Subversion's working folderBert Huijben2009-09-26T11:26:34Z2009-09-26T11:26:34ZMuch better solution than sharing a working copy.http://stackoverflow.com/questions/1477901/several-developers-and-one-subversions-working-folder/1477954#1477954Comment by Bert Huijben on Several developers and one Subversion's working folderBert Huijben2009-09-26T11:26:02Z2009-09-26T11:26:02ZIf they share the working copy, they can still commit as their own.. (The username is not stored in the working copy). They just commit the changes of everybody else too.http://stackoverflow.com/questions/1347926/svn-how-do-i-intercept-and-alter-or-add-files-on-pre-commitComment by Bert Huijben on SVN - How do I intercept and alter or add files on pre-commit?Bert Huijben2009-09-26T07:07:33Z2009-09-26T07:07:33ZNormally you want to pass the SvnLookOrigin that you can get via the SvnHookArguments class, not just SvnLookOrigin(@"..."), because that looks at HEAD. While you probably want to look at the current transaction.http://stackoverflow.com/questions/18010/is-ankhsvn-any-good/18027#18027Comment by Bert Huijben on Is AnkhSVN any good?Bert Huijben2009-09-10T22:21:11Z2009-09-10T22:21:11ZI would recommend selecting a third party diff tool in Tools -> Options -> Source Control -> Subversion User Tools... (Personally I use SourceGear DiffMerge; a free to use, but very advanced merge tool)http://stackoverflow.com/questions/1396737/can-i-use-subversion-for-a-multi-gigabyte-data-setComment by Bert Huijben on Can I use Subversion for a multi gigabyte data set?Bert Huijben2009-09-09T09:45:05Z2009-09-09T09:45:05ZSubversion uses the file time/size for status checks since Subversion 1.5. (1.0-1.4 only used the file time).