QuestionId stringlengths 3 8 | QuestionTitle stringlengths 15 149 | QuestionScore int64 1 27.2k | QuestionCreatedUtc stringdate 2008-08-01 18:33:08 2025-06-16 04:59:48 | QuestionBodyHtml stringlengths 40 28.2k | QuestionViewCount int64 78 16.5M | QuestionOwnerUserId float64 4 25.2M ⌀ | QuestionLastActivityUtc stringdate 2008-09-08 19:26:01 2026-01-24 22:40:25 | AcceptedAnswerId int64 266 79.7M | AnswerScore int64 2 30.1k | AnswerCreatedUtc stringdate 2008-08-01 23:40:28 2025-06-16 05:23:39 | AnswerOwnerUserId float64 1 29.5M ⌀ | AnswerLastActivityUtc stringdate 2008-08-01 23:40:28 2026-01-23 17:46:09 | QuestionLink stringlengths 31 36 | AnswerLink stringlengths 31 36 | AnswerBodyHtml stringlengths 35 33k | AnswerBodyPreview stringlengths 35 400 | AllTagIdsCsv stringlengths 2 37 | AllTagNamesCsv stringlengths 2 106 | MergedQuestion stringlengths 74 28.4k | quality_filter stringclasses 10
values | unique_id int64 0 29k | tag_major_lang stringclasses 10
values | MergedQuestion_md stringlengths 60 28.1k | AnswerBodyHtml_md stringlengths 14 29.2k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
30087030 | SVN - how to get a list of all commits on a branch and from branches merged into that branch? | 8 | 2015-05-06 20:36:10 | <p>I'm new to SVN and am having a really hard time getting information I'm used to getting in Git. </p>
<p>What I really need is a way to, given a 'parent' branch, get all commits made on that branch and on other branches that may have been merged into the parent branch. Now, I don't need the list of commits from head... | 8,731 | 797,963 | 2019-09-23 11:11:28 | 30,088,131 | 17 | 2015-05-06 21:42:28 | 761,095 | 2019-09-23 11:11:28 | https://stackoverflow.com/q/30087030 | https://stackoverflow.com/a/30088131 | <p>It looks like you are overcomplicating things after being used to git. It's much user-friendly in Subversion. Just run the command <code>svn log --use-merge-history --verbose <BRANCH-URL></code>.</p>
<p>E.g. <code>svn log -g -v https://svn.apache.org/repos/asf/subversion/branches/1.9.x/</code></p>
<p>See <a ... | <p>It looks like you are overcomplicating things after being used to git. It's much user-friendly in Subversion. Just run the command <code>svn log --use-merge-history --verbose <BRANCH-URL></code>.</p> <p>E.g. <code>svn log -g -v https://svn.apache.org/repos/asf/subversion/branches/1.9.x/</code></p> <p>See <a ... | 63, 119 | git, svn | <h1>SVN - how to get a list of all commits on a branch and from branches merged into that branch?</h1>
<p>I'm new to SVN and am having a really hard time getting information I'm used to getting in Git. </p>
<p>What I really need is a way to, given a 'parent' branch, get all commits made on that branch and on other bra... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,660 | svn | # SVN - how to get a list of all commits on a branch and from branches merged into that branch?
I'm new to SVN and am having a really hard time getting information I'm used to getting in Git.
What I really need is a way to, given a 'parent' branch, get all commits made on that branch and on other branches that may ha... | It looks like you are overcomplicating things after being used to git. It's much user-friendly in Subversion. Just run the command `svn log --use-merge-history --verbose <BRANCH-URL>`.
E.g. `svn log -g -v https://svn.apache.org/repos/asf/subversion/branches/1.9.x/`
See [SVNBook | `svn log`](http://svnbook.red-bean.co... |
615728 | Import dumped SVN repo into VisualSVN Server | 8 | 2009-03-05 17:19:57 | <p>I have dumped my repository on my old computer to a file with the command.
<code>svnadmin dump C:\myrepo/ > mydumpfile</code></p>
<p>Now I decided to use <a href="http://www.visualsvn.com/server/" rel="nofollow noreferrer">VisualSVN Server</a> on my new computer as opposed to just a baseline subversion. How do I... | 11,895 | 43,994 | 2020-03-27 19:09:28 | 615,768 | 17 | 2009-03-05 17:33:16 | 43,994 | 2009-12-09 03:59:21 | https://stackoverflow.com/q/615728 | https://stackoverflow.com/a/615768 | <p>Figured it out now that Andrew Clark pointed out there is a "All Tasks"</p>
<pre><code>Repository -> All Tasks -> Open Command Prompt
svnadmin create repository-name
svnadmin load repository-name < repository-name.dmp
</code></pre>
| <p>Figured it out now that Andrew Clark pointed out there is a "All Tasks"</p> <pre><code>Repository -> All Tasks -> Open Command Prompt svnadmin create repository-name svnadmin load repository-name < repository-name.dmp </code></pre> | 63, 432, 493, 1991, 11603 | backup, import, svn, visualsvn, visualsvn-server | <h1>Import dumped SVN repo into VisualSVN Server</h1>
<p>I have dumped my repository on my old computer to a file with the command.
<code>svnadmin dump C:\myrepo/ > mydumpfile</code></p>
<p>Now I decided to use <a href="http://www.visualsvn.com/server/" rel="nofollow noreferrer">VisualSVN Server</a> on my new compu... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,661 | svn | # Import dumped SVN repo into VisualSVN Server
I have dumped my repository on my old computer to a file with the command.
`svnadmin dump C:\myrepo/ > mydumpfile`
Now I decided to use [VisualSVN Server](http://www.visualsvn.com/server/) on my new computer as opposed to just a baseline subversion. How do I import my re... | Figured it out now that Andrew Clark pointed out there is a "All Tasks"
```
Repository -> All Tasks -> Open Command Prompt
svnadmin create repository-name
svnadmin load repository-name < repository-name.dmp
``` |
12730180 | Is it "safe" to merge individual files between branches in SVN? | 7 | 2012-10-04 15:00:53 | <p>The question of how you can merge individual files in SVN has been <a href="https://stackoverflow.com/questions/3876854/svn-merge-individual-file-revisions-from-a-branch-into-trunk">answered before</a>, so my question is: Is it safe to do so? Will SVN "get" that specific files have already been merged if I end up me... | 1,299 | 144,964 | 2012-10-04 16:55:47 | 12,732,085 | 17 | 2012-10-04 16:55:47 | 368,630 | 2012-10-04 16:55:47 | https://stackoverflow.com/q/12730180 | https://stackoverflow.com/a/12732085 | <p>Yes, you can merge individual files, but it's usually considered <em>bad practice</em> to do so.</p>
<p>The problem is that Subversion uses the <code>svn:mergeinfo</code> to track merges. If a file doesn't have this <code>svn:mergeinfo</code> property, it uses the <code>svn:mergeinfo</code> of a parent directory. W... | <p>Yes, you can merge individual files, but it's usually considered <em>bad practice</em> to do so.</p> <p>The problem is that Subversion uses the <code>svn:mergeinfo</code> to track merges. If a file doesn't have this <code>svn:mergeinfo</code> property, it uses the <code>svn:mergeinfo</code> of a parent directory. W... | 63, 456, 717 | merge, svn, version-control | <h1>Is it "safe" to merge individual files between branches in SVN?</h1>
<p>The question of how you can merge individual files in SVN has been <a href="https://stackoverflow.com/questions/3876854/svn-merge-individual-file-revisions-from-a-branch-into-trunk">answered before</a>, so my question is: Is it safe to do so? W... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,662 | svn | # Is it "safe" to merge individual files between branches in SVN?
The question of how you can merge individual files in SVN has been [answered before](https://stackoverflow.com/questions/3876854/svn-merge-individual-file-revisions-from-a-branch-into-trunk), so my question is: Is it safe to do so? Will SVN "get" that s... | Yes, you can merge individual files, but it's usually considered *bad practice* to do so.
The problem is that Subversion uses the `svn:mergeinfo` to track merges. If a file doesn't have this `svn:mergeinfo` property, it uses the `svn:mergeinfo` of a parent directory. When you merge individual files hither and thither,... |
1001115 | how to check in only set of files changed into subversion | 7 | 2009-06-16 12:18:25 | <p>How to check in only selected files changed in to the repository?</p>
| 6,696 | null | 2009-06-16 14:32:37 | 1,001,145 | 17 | 2009-06-16 12:24:02 | 64,217 | 2009-06-16 14:32:37 | https://stackoverflow.com/q/1001115 | https://stackoverflow.com/a/1001145 | <p>Just give the file names to the commit command:</p>
<pre><code>svn commit -m "Fixed a bad bug" file1 file2
</code></pre>
<p>If you are using subversion 1.5 or newer, you could instead create a <a href="http://svnbook.red-bean.com/en/1.5/svn.advanced.changelists.html" rel="noreferrer">changelist</a>. </p>
<pre><co... | <p>Just give the file names to the commit command:</p> <pre><code>svn commit -m "Fixed a bad bug" file1 file2 </code></pre> <p>If you are using subversion 1.5 or newer, you could instead create a <a href="http://svnbook.red-bean.com/en/1.5/svn.advanced.changelists.html" rel="noreferrer">changelist</a>. </p> <pre><co... | 63 | svn | <h1>how to check in only set of files changed into subversion</h1>
<p>How to check in only selected files changed in to the repository?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,663 | svn | # how to check in only set of files changed into subversion
How to check in only selected files changed in to the repository? | Just give the file names to the commit command:
```
svn commit -m "Fixed a bad bug" file1 file2
```
If you are using subversion 1.5 or newer, you could instead create a [changelist](http://svnbook.red-bean.com/en/1.5/svn.advanced.changelists.html).
```
svn changelist mychanges file1 file2
```
will create a changeli... |
490379 | After adding a symbolic link in a svn repository I keep receiving an error inside of that directory | 7 | 2009-01-29 03:18:40 | <p>I created a symbolic link from /www/dir2/ to /home/dir2/
I then added it to the repository ( svn add /www/dir2/ )
Now if I go into that directory, and try to do anything with svn in there I receive a "svn: warning: '.' is not a working copy" error.<br>
If I try to add a subdirectory (svn add /www/dir2/dir5 ) I recei... | 24,928 | 24,628 | 2010-11-12 10:46:49 | 490,718 | 17 | 2009-01-29 06:57:16 | 51,021 | 2009-01-29 06:57:16 | https://stackoverflow.com/q/490379 | https://stackoverflow.com/a/490718 | <p>Subversion does not follow symbolic links. When a symlink is committed, it is stored in the database as a regular file with the <code>svn:special</code> property set. See the <a href="http://svnbook.red-bean.com/en/1.1/ch07s02.html#svn-ch-7-sect-2.3.7" rel="noreferrer">manual</a> for more information.</p>
<p>If you... | <p>Subversion does not follow symbolic links. When a symlink is committed, it is stored in the database as a regular file with the <code>svn:special</code> property set. See the <a href="http://svnbook.red-bean.com/en/1.1/ch07s02.html#svn-ch-7-sect-2.3.7" rel="noreferrer">manual</a> for more information.</p> <p>If you... | 63, 1122 | svn, symlink | <h1>After adding a symbolic link in a svn repository I keep receiving an error inside of that directory</h1>
<p>I created a symbolic link from /www/dir2/ to /home/dir2/
I then added it to the repository ( svn add /www/dir2/ )
Now if I go into that directory, and try to do anything with svn in there I receive a "svn: wa... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,664 | svn | # After adding a symbolic link in a svn repository I keep receiving an error inside of that directory
I created a symbolic link from /www/dir2/ to /home/dir2/
I then added it to the repository ( svn add /www/dir2/ )
Now if I go into that directory, and try to do anything with svn in there I receive a "svn: warning: '.... | Subversion does not follow symbolic links. When a symlink is committed, it is stored in the database as a regular file with the `svn:special` property set. See the [manual](http://svnbook.red-bean.com/en/1.1/ch07s02.html#svn-ch-7-sect-2.3.7) for more information.
If you want to add that directory to the repository, yo... |
291793 | Recursively adding files to a Subversion repository | 7 | 2008-11-14 23:38:04 | <p>Is there a way to recursively add all "non added" files to SVN?</p>
<p>I want to do something like</p>
<pre><code>svn add trunk/
</code></pre>
<p>to add all new files, without getting:</p>
<pre><code>svn: warning: 'trunk' is already under version control
</code></pre>
<p>If this is not possible, is there a way ... | 10,721 | 1,638 | 2014-08-20 22:48:54 | 291,800 | 17 | 2008-11-14 23:47:08 | 37,548 | 2008-11-14 23:47:08 | https://stackoverflow.com/q/291793 | https://stackoverflow.com/a/291800 | <p>Use the --force option.</p>
<p>Example:</p>
<pre><code>svn add * --force
</code></pre>
| <p>Use the --force option.</p> <p>Example:</p> <pre><code>svn add * --force </code></pre> | 63 | svn | <h1>Recursively adding files to a Subversion repository</h1>
<p>Is there a way to recursively add all "non added" files to SVN?</p>
<p>I want to do something like</p>
<pre><code>svn add trunk/
</code></pre>
<p>to add all new files, without getting:</p>
<pre><code>svn: warning: 'trunk' is already under version contr... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,665 | svn | # Recursively adding files to a Subversion repository
Is there a way to recursively add all "non added" files to SVN?
I want to do something like
```
svn add trunk/
```
to add all new files, without getting:
```
svn: warning: 'trunk' is already under version control
```
If this is not possible, is there a way to ... | Use the --force option.
Example:
```
svn add * --force
``` |
9223918 | How to accept 'theirs-conflict' to resolve tree conflict: Local add, incoming add upon merge | 26 | 2012-02-10 06:53:41 | <p>I have come across the following basic Tree conflict: Local add, incoming add upon merge.</p>
<p>I know we can use <code>svn resolve --accept working file</code> to resolve it, but SVN prevent me to use <code>accept their-conflict</code> to accept the incoming version.</p>
<p>Can anyone tell me how to replace my ... | 44,502 | 801,100 | 2020-10-26 05:20:17 | 11,016,568 | 16 | 2012-06-13 14:02:24 | 709,588 | 2012-06-13 14:02:24 | https://stackoverflow.com/q/9223918 | https://stackoverflow.com/a/11016568 | <p>The right thing to do is detect this problem in a previous --dry-run and delete the local conflicting dir with <code>svn delete</code> before doing the merge.</p>
<p>First scenario: Working copy with the merge already done.
Solution: Delete the working copy, checkout a clean copy and do the right thing.</p>
<p>Sec... | <p>The right thing to do is detect this problem in a previous --dry-run and delete the local conflicting dir with <code>svn delete</code> before doing the merge.</p> <p>First scenario: Working copy with the merge already done. Solution: Delete the working copy, checkout a clean copy and do the right thing.</p> <p>Sec... | 63, 717, 28636 | merge, svn, tree-conflict | <h1>How to accept 'theirs-conflict' to resolve tree conflict: Local add, incoming add upon merge</h1>
<p>I have come across the following basic Tree conflict: Local add, incoming add upon merge.</p>
<p>I know we can use <code>svn resolve --accept working file</code> to resolve it, but SVN prevent me to use <code>acce... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,668 | svn | # How to accept 'theirs-conflict' to resolve tree conflict: Local add, incoming add upon merge
I have come across the following basic Tree conflict: Local add, incoming add upon merge.
I know we can use `svn resolve --accept working file` to resolve it, but SVN prevent me to use `accept their-conflict` to accept the ... | The right thing to do is detect this problem in a previous --dry-run and delete the local conflicting dir with `svn delete` before doing the merge.
First scenario: Working copy with the merge already done.
Solution: Delete the working copy, checkout a clean copy and do the right thing.
Second scenario: Already commit... |
1242364 | How can I find the root folder of a given subversion working copy | 26 | 2009-08-07 01:01:19 | <p>Quite often I'm sitting in the middle of a subversion working copy, and I want to do a quick <code>svn status</code> to find out what changes I have made since the last checkin. However <code>svn status</code> only works on the current folder and it's children. (Similarly for <code>svn up</code> too)</p>
<p>I'd lik... | 20,507 | 67,829 | 2018-07-20 20:43:43 | 1,242,377 | 16 | 2009-08-07 01:06:02 | 67,829 | 2009-08-07 01:06:02 | https://stackoverflow.com/q/1242364 | https://stackoverflow.com/a/1242377 | <p>Here's my first go at an answer: I wrote a little bash script called <code>svnbase</code>:</p>
<pre><code>#!/bin/bash -u
# this command outputs the top-most parent of the current folder that is still
# under svn revision control to standard out
# if the current folder is not under svn revision control, nothing i... | <p>Here's my first go at an answer: I wrote a little bash script called <code>svnbase</code>:</p> <pre><code>#!/bin/bash -u # this command outputs the top-most parent of the current folder that is still # under svn revision control to standard out # if the current folder is not under svn revision control, nothing i... | 63, 7330 | repository, svn | <h1>How can I find the root folder of a given subversion working copy</h1>
<p>Quite often I'm sitting in the middle of a subversion working copy, and I want to do a quick <code>svn status</code> to find out what changes I have made since the last checkin. However <code>svn status</code> only works on the current folder... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,669 | svn | # How can I find the root folder of a given subversion working copy
Quite often I'm sitting in the middle of a subversion working copy, and I want to do a quick `svn status` to find out what changes I have made since the last checkin. However `svn status` only works on the current folder and it's children. (Similarly ... | Here's my first go at an answer: I wrote a little bash script called `svnbase`:
```
#!/bin/bash -u
# this command outputs the top-most parent of the current folder that is still
# under svn revision control to standard out
# if the current folder is not under svn revision control, nothing is output
# and a non-zero... |
2626469 | SVN X remains in tree-conflict | 25 | 2010-04-13 01:42:17 | <p>I am using VisualSVN (which uses Tortoise). I accidentally move a folder to a different location. When tries to move it back, SVN pukes with this error. It happened once before and I managed to do some random updates/commits, not knowing what I was doing and it was "fixed". I cannot pull the same magic again, so I n... | 39,783 | 96,140 | 2019-09-05 07:23:45 | 9,982,462 | 16 | 2012-04-02 19:18:18 | 640,205 | 2016-01-15 20:20:36 | https://stackoverflow.com/q/2626469 | https://stackoverflow.com/a/9982462 | <p>I had the same error (tree conflict), but from a different workflow.</p>
<p>Find what process has the lock. Download Handle.exe, and open to the folder you extracted to. Then run <code>"C:\path\handle.exe" "C:\path\FileOrFolder"</code>.</p>
<p><a href="https://technet.microsoft.com/en-us/sysinternals/bb896655.as... | <p>I had the same error (tree conflict), but from a different workflow.</p> <p>Find what process has the lock. Download Handle.exe, and open to the folder you extracted to. Then run <code>"C:\path\handle.exe" "C:\path\FileOrFolder"</code>.</p> <p><a href="https://technet.microsoft.com/en-us/sysinternals/bb896655.as... | 63, 656, 11603, 28636 | svn, tortoisesvn, tree-conflict, visualsvn-server | <h1>SVN X remains in tree-conflict</h1>
<p>I am using VisualSVN (which uses Tortoise). I accidentally move a folder to a different location. When tries to move it back, SVN pukes with this error. It happened once before and I managed to do some random updates/commits, not knowing what I was doing and it was "fixed". I ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,670 | svn | # SVN X remains in tree-conflict
I am using VisualSVN (which uses Tortoise). I accidentally move a folder to a different location. When tries to move it back, SVN pukes with this error. It happened once before and I managed to do some random updates/commits, not knowing what I was doing and it was "fixed". I cannot pu... | I had the same error (tree conflict), but from a different workflow.
Find what process has the lock. Download Handle.exe, and open to the folder you extracted to. Then run `"C:\path\handle.exe" "C:\path\FileOrFolder"`.
<https://technet.microsoft.com/en-us/sysinternals/bb896655.aspx>
Workflow to reproduce:
```
- del... |
7517918 | What should I configure SVN to ignore in my Delphi projects? | 22 | 2011-09-22 16:05:16 | <p>What files should I tell Tortoise SVN to ignore when committing to a repository?</p>
<p>In particular I am interested in practical information such as whether to include such files as <code>*.dproj.2007</code> etc that seem to appear but may not be needed.</p>
| 4,213 | 47,012 | 2022-02-13 21:07:34 | 7,519,398 | 16 | 2011-09-22 18:07:46 | 62,576 | 2011-09-22 18:07:46 | https://stackoverflow.com/q/7517918 | https://stackoverflow.com/a/7519398 | <p>I use these in D2007, which seem to still work fine in XE and XE2:</p>
<pre><code>*.dcu *.~* *.ddp *.exe *.map *.bak *.obj *.dsk
*.err *.log *.tmp *.identcache *.tvsconfig __history *.todo
ModelSupport* *.local
</code></pre>
<p>I don't include <code>ModelSupport</code> because I don't use the IDE's modeling stu... | <p>I use these in D2007, which seem to still work fine in XE and XE2:</p> <pre><code>*.dcu *.~* *.ddp *.exe *.map *.bak *.obj *.dsk *.err *.log *.tmp *.identcache *.tvsconfig __history *.todo ModelSupport* *.local </code></pre> <p>I don't include <code>ModelSupport</code> because I don't use the IDE's modeling stu... | 63, 118, 656 | delphi, svn, tortoisesvn | <h1>What should I configure SVN to ignore in my Delphi projects?</h1>
<p>What files should I tell Tortoise SVN to ignore when committing to a repository?</p>
<p>In particular I am interested in practical information such as whether to include such files as <code>*.dproj.2007</code> etc that seem to appear but may not ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,672 | svn | # What should I configure SVN to ignore in my Delphi projects?
What files should I tell Tortoise SVN to ignore when committing to a repository?
In particular I am interested in practical information such as whether to include such files as `*.dproj.2007` etc that seem to appear but may not be needed. | I use these in D2007, which seem to still work fine in XE and XE2:
```
*.dcu *.~* *.ddp *.exe *.map *.bak *.obj *.dsk
*.err *.log *.tmp *.identcache *.tvsconfig __history *.todo
ModelSupport* *.local
```
I don't include `ModelSupport` because I don't use the IDE's modeling stuff, so there's no point in versioning ... |
8990544 | Cannot connect to repo with TortoiseSVN | 19 | 2012-01-24 16:38:36 | <p>I've been running a project for some months now using the same TortoiseSVN repository without much hassle, until now.</p>
<p>I need to add another box to the project but it seems to be impossible for TSVN to connect to the repository. This is the stuff I've discovered or tried out:</p>
<p>I have two client boxes: ... | 218,002 | 532,875 | 2024-12-17 07:55:52 | 8,992,421 | 16 | 2012-01-24 18:56:26 | 368,630 | 2012-01-24 18:56:26 | https://stackoverflow.com/q/8990544 | https://stackoverflow.com/a/8992421 | <p>You need to determine whether this is a problem with TortoiseSVN, your Subversion repository, or your network connection.</p>
<ul>
<li>First of all, check your URL. I never used <a href="http://www.usvn.info/" rel="noreferrer">User-Friendly SVN</a>, so I don't know what it does to the Apache httpd configuration. Ho... | <p>You need to determine whether this is a problem with TortoiseSVN, your Subversion repository, or your network connection.</p> <ul> <li>First of all, check your URL. I never used <a href="http://www.usvn.info/" rel="noreferrer">User-Friendly SVN</a>, so I don't know what it does to the Apache httpd configuration. Ho... | 63, 656 | svn, tortoisesvn | <h1>Cannot connect to repo with TortoiseSVN</h1>
<p>I've been running a project for some months now using the same TortoiseSVN repository without much hassle, until now.</p>
<p>I need to add another box to the project but it seems to be impossible for TSVN to connect to the repository. This is the stuff I've discovere... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,674 | svn | # Cannot connect to repo with TortoiseSVN
I've been running a project for some months now using the same TortoiseSVN repository without much hassle, until now.
I need to add another box to the project but it seems to be impossible for TSVN to connect to the repository. This is the stuff I've discovered or tried out:
... | You need to determine whether this is a problem with TortoiseSVN, your Subversion repository, or your network connection.
- First of all, check your URL. I never used [User-Friendly SVN](http://www.usvn.info/), so I don't know what it does to the Apache httpd configuration. However, the standard Apache configuration f... |
7202453 | SVN Revert Trunk, remove a revision as if it never existed? | 16 | 2011-08-26 09:11:31 | <p>Is it possible in the svn server to remove a revision as if it never existed?</p>
<p>So we have the following revisions:</p>
<pre><code>1004 // Commit of some bogus code that broke the build and was just wrong
1003 // Change 1.2
1002 // Change 1.1
1001
1000 *** Initial checkin
</code></pre>
<p>Can we we remove th... | 40,893 | 358,297 | 2016-10-18 19:25:22 | 7,202,483 | 16 | 2011-08-26 09:13:20 | 193,676 | 2015-08-10 15:16:32 | https://stackoverflow.com/q/7202453 | https://stackoverflow.com/a/7202483 | <p>VCS systems are designed specifically to make this as complicated as possible. You usually do not want to do this.</p>
<p>That being said, from the official documentation:</p>
<blockquote>
<p>There are special cases where you might want to destroy all evidence of a file or commit. (Perhaps somebody accidentally comm... | <p>VCS systems are designed specifically to make this as complicated as possible. You usually do not want to do this.</p> <p>That being said, from the official documentation:</p> <blockquote> <p>There are special cases where you might want to destroy all evidence of a file or commit. (Perhaps somebody accidentally comm... | 63, 1555, 12309, 35371 | revert, revision, svn, svn-trunk | <h1>SVN Revert Trunk, remove a revision as if it never existed?</h1>
<p>Is it possible in the svn server to remove a revision as if it never existed?</p>
<p>So we have the following revisions:</p>
<pre><code>1004 // Commit of some bogus code that broke the build and was just wrong
1003 // Change 1.2
1002 // Change 1.... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,676 | svn | # SVN Revert Trunk, remove a revision as if it never existed?
Is it possible in the svn server to remove a revision as if it never existed?
So we have the following revisions:
```
1004 // Commit of some bogus code that broke the build and was just wrong
1003 // Change 1.2
1002 // Change 1.1
1001
1000 *** Initial che... | VCS systems are designed specifically to make this as complicated as possible. You usually do not want to do this.
That being said, from the official documentation:
> There are special cases where you might want to destroy all evidence of a file or commit. (Perhaps somebody accidentally committed a confidential docum... |
2905461 | SVN Working Copy to Different Branch Merge Without Commit to Working Copy Branch | 14 | 2010-05-25 14:14:40 | <p>If a working copy (local copy) was created from a branch, lets call it A. Coding was done in branch A, but branch A was "Closed" to commits, and branch b was opened. How do I merge my working copy changes into Branch B and commit to branch B, without commiting my changes to branch A first.</p>
<p>Trunk -> branch ... | 8,193 | 214,718 | 2014-06-04 17:42:38 | 2,905,580 | 16 | 2010-05-25 14:28:16 | 140,719 | 2010-05-25 14:33:57 | https://stackoverflow.com/q/2905461 | https://stackoverflow.com/a/2905580 | <ol>
<li>Make backup of your working copy. </li>
<li><code>svn switch</code> to branch <code>B</code></li>
<li>review changes (base revision might differ, and svn does blind, dumb textual merges only), resolve conflicts, if any</li>
<li>commit </li>
</ol>
<p>Doing things like this with a working copy with uncommitted ... | <ol> <li>Make backup of your working copy. </li> <li><code>svn switch</code> to branch <code>B</code></li> <li>review changes (base revision might differ, and svn does blind, dumb textual merges only), resolve conflicts, if any</li> <li>commit </li> </ol> <p>Doing things like this with a working copy with uncommitted ... | 63, 717, 19697 | merge, svn, working-copy | <h1>SVN Working Copy to Different Branch Merge Without Commit to Working Copy Branch</h1>
<p>If a working copy (local copy) was created from a branch, lets call it A. Coding was done in branch A, but branch A was "Closed" to commits, and branch b was opened. How do I merge my working copy changes into Branch B and co... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,677 | svn | # SVN Working Copy to Different Branch Merge Without Commit to Working Copy Branch
If a working copy (local copy) was created from a branch, lets call it A. Coding was done in branch A, but branch A was "Closed" to commits, and branch b was opened. How do I merge my working copy changes into Branch B and commit to bra... | 1. Make backup of your working copy.
2. `svn switch` to branch `B`
3. review changes (base revision might differ, and svn does blind, dumb textual merges only), resolve conflicts, if any
4. commit
Doing things like this with a working copy with uncommitted changes is perilous. If anything goes wrong or if there are to... |
1968671 | How to commit changes to SVN External? | 14 | 2009-12-28 09:28:40 | <p>I have a SVN external setup in my code which pulls all the code for a directory from another repository. When I make a change to that code and try to commit the change, it doesn't show any changes to commit in tortoiseSVN. How do I commit changes made in a externals directory back to the repository the code came fro... | 13,016 | 239,488 | 2009-12-28 09:31:29 | 1,968,679 | 16 | 2009-12-28 09:31:29 | 80,911 | 2009-12-28 09:31:29 | https://stackoverflow.com/q/1968671 | https://stackoverflow.com/a/1968679 | <p>You need to commit from within the external directory. </p>
<p>CLI equivalent:</p>
<pre><code>svn commit dirname
</code></pre>
| <p>You need to commit from within the external directory. </p> <p>CLI equivalent:</p> <pre><code>svn commit dirname </code></pre> | 63, 656 | svn, tortoisesvn | <h1>How to commit changes to SVN External?</h1>
<p>I have a SVN external setup in my code which pulls all the code for a directory from another repository. When I make a change to that code and try to commit the change, it doesn't show any changes to commit in tortoiseSVN. How do I commit changes made in a externals di... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,678 | svn | # How to commit changes to SVN External?
I have a SVN external setup in my code which pulls all the code for a directory from another repository. When I make a change to that code and try to commit the change, it doesn't show any changes to commit in tortoiseSVN. How do I commit changes made in a externals directory b... | You need to commit from within the external directory.
CLI equivalent:
```
svn commit dirname
``` |
21156065 | How to locally ignore .git and .gitignore in a svn repo? | 13 | 2014-01-16 07:46:43 | <p>I have a SVN working copy (managed by TortoiseSVN). In that working copy I use git for local version control and branching.
Of course, I want to hide the .git directory and .gitignore file for svn. </p>
<p>However, ignoring them means adding a property to the repository which is no longer local.
I don't want that... | 6,180 | 420,409 | 2014-01-16 18:43:14 | 21,170,219 | 16 | 2014-01-16 18:43:14 | 2,089,194 | 2014-01-16 18:43:14 | https://stackoverflow.com/q/21156065 | https://stackoverflow.com/a/21170219 | <p>Use the <code>global-ignores</code> configuration option. Which is documented in the <a href="http://svnbook.red-bean.com/en/1.7/svn.advanced.props.special.ignore.html">SVN Book's Ignoring Unversioned Items section</a>.</p>
<p>This setting will impact all of your Subversion clients and working copies, but I suspec... | <p>Use the <code>global-ignores</code> configuration option. Which is documented in the <a href="http://svnbook.red-bean.com/en/1.7/svn.advanced.props.special.ignore.html">SVN Book's Ignoring Unversioned Items section</a>.</p> <p>This setting will impact all of your Subversion clients and working copies, but I suspec... | 63, 456, 656 | svn, tortoisesvn, version-control | <h1>How to locally ignore .git and .gitignore in a svn repo?</h1>
<p>I have a SVN working copy (managed by TortoiseSVN). In that working copy I use git for local version control and branching.
Of course, I want to hide the .git directory and .gitignore file for svn. </p>
<p>However, ignoring them means adding a prope... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,680 | svn | # How to locally ignore .git and .gitignore in a svn repo?
I have a SVN working copy (managed by TortoiseSVN). In that working copy I use git for local version control and branching.
Of course, I want to hide the .git directory and .gitignore file for svn.
However, ignoring them means adding a property to the reposit... | Use the `global-ignores` configuration option. Which is documented in the [SVN Book's Ignoring Unversioned Items section](http://svnbook.red-bean.com/en/1.7/svn.advanced.props.special.ignore.html).
This setting will impact all of your Subversion clients and working copies, but I suspect that ignoring .git and .gitigno... |
1798468 | SVN not working in Eclipse | 13 | 2009-11-25 17:15:10 | <p>One day I pressed in Eclipse <code>Help</code> -> <code>Check for Updates</code> (and I learnt that I should Never Ever update a software which works fine.)</p>
<p>Then in a project that I used with SVN the whole submenu of "Team" and the little icons that showed that some files weren't commited, they all dissapear... | 75,404 | 137,483 | 2015-06-21 01:18:04 | 1,810,442 | 16 | 2009-11-27 19:56:56 | 154,306 | 2015-06-21 01:18:04 | https://stackoverflow.com/q/1798468 | https://stackoverflow.com/a/1810442 | <p><a href="http://www.eclipse.org/subversive" rel="noreferrer">Subversive</a> is my favorite SVN implementation in Eclipse because it works better than the others and it integrates neatly into the UI.</p>
<p>I suggest you follow these steps:</p>
<ol>
<li><a href="http://www.eclipse.org/downloads/" rel="noreferrer">D... | <p><a href="http://www.eclipse.org/subversive" rel="noreferrer">Subversive</a> is my favorite SVN implementation in Eclipse because it works better than the others and it integrates neatly into the UI.</p> <p>I suggest you follow these steps:</p> <ol> <li><a href="http://www.eclipse.org/downloads/" rel="noreferrer">D... | 53, 55, 63, 3311 | eclipse, subclipse, subversive, svn | <h1>SVN not working in Eclipse</h1>
<p>One day I pressed in Eclipse <code>Help</code> -> <code>Check for Updates</code> (and I learnt that I should Never Ever update a software which works fine.)</p>
<p>Then in a project that I used with SVN the whole submenu of "Team" and the little icons that showed that some files ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,681 | svn | # SVN not working in Eclipse
One day I pressed in Eclipse `Help` -> `Check for Updates` (and I learnt that I should Never Ever update a software which works fine.)
Then in a project that I used with SVN the whole submenu of "Team" and the little icons that showed that some files weren't commited, they all dissapeared... | [Subversive](http://www.eclipse.org/subversive) is my favorite SVN implementation in Eclipse because it works better than the others and it integrates neatly into the UI.
I suggest you follow these steps:
1. [Download](http://www.eclipse.org/downloads/) the most recent version of Eclipse (currently Galileo) and extra... |
16649199 | How do I configure the SVN HTTP proxy from the command line? | 12 | 2013-05-20 12:09:37 | <p>I script the set up of my build environment. (So the build process can bootstrap itself if it finds itself running on a clean image).</p>
<p>As part of this process, certain dependencies are retrieved from public SVN repositories. </p>
<p>The build machines sit behind a proxy, so I need to configure SVN to use the... | 14,362 | 525,741 | 2015-02-11 11:24:15 | 16,649,768 | 16 | 2013-05-20 12:40:19 | 761,095 | 2015-02-11 11:24:15 | https://stackoverflow.com/q/16649199 | https://stackoverflow.com/a/16649768 | <p><a href="https://www.visualsvn.com/support/svnbook/" rel="noreferrer">SVNBook</a> to the rescue!</p>
<ol>
<li><p>As you've already mentioned, you can add SVN configuration options to <code>svn</code> command-line client.</p>
<p>See <a href="https://www.visualsvn.com/support/svnbook/ref/svn/#svn.ref.svn.sw.config_o... | <p><a href="https://www.visualsvn.com/support/svnbook/" rel="noreferrer">SVNBook</a> to the rescue!</p> <ol> <li><p>As you've already mentioned, you can add SVN configuration options to <code>svn</code> command-line client.</p> <p>See <a href="https://www.visualsvn.com/support/svnbook/ref/svn/#svn.ref.svn.sw.config_o... | 63, 5647, 11294, 13693, 24170 | build, build-script, build-system, dependency-management, svn | <h1>How do I configure the SVN HTTP proxy from the command line?</h1>
<p>I script the set up of my build environment. (So the build process can bootstrap itself if it finds itself running on a clean image).</p>
<p>As part of this process, certain dependencies are retrieved from public SVN repositories. </p>
<p>The bu... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,683 | svn | # How do I configure the SVN HTTP proxy from the command line?
I script the set up of my build environment. (So the build process can bootstrap itself if it finds itself running on a clean image).
As part of this process, certain dependencies are retrieved from public SVN repositories.
The build machines sit behind ... | [SVNBook](https://www.visualsvn.com/support/svnbook/) to the rescue!
1. As you've already mentioned, you can add SVN configuration options to `svn` command-line client.
See [SVNBook | `--config-option` command-line reference](https://www.visualsvn.com/support/svnbook/ref/svn/#svn.ref.svn.sw.config_option).
> S... |
6227893 | Why choose mod_dav_svn instead of svnserve & a repository browser? | 12 | 2011-06-03 13:46:27 | <p>Please correct me if I am wrong about my understanding of mod_dav_svn, which is that it basically serves 2 purposes:</p>
<ol>
<li>Expose the SVN repository (on the filesystem) to clients, which can be either:
<ul>
<li>repository browsers (e.g. web)</li>
<li>the 'svn' command itself, which is a client command line p... | 14,276 | 779,159 | 2011-12-27 08:55:08 | 6,230,335 | 16 | 2011-06-03 17:08:40 | 368,630 | 2011-06-05 02:32:00 | https://stackoverflow.com/q/6227893 | https://stackoverflow.com/a/6230335 | <p>Forget Point #2: HTTP Browsing. That's just a slight bonus. It doesn't replace your need for something like <a href="http://www.atlassian.com/software/fisheye/" rel="noreferrer">Fisheye</a>, <a href="http://viewvc.org/" rel="noreferrer">ViewVC</a>, or (my favorite) <a href="http://www.sventon.org/" rel="noreferrer">... | <p>Forget Point #2: HTTP Browsing. That's just a slight bonus. It doesn't replace your need for something like <a href="http://www.atlassian.com/software/fisheye/" rel="noreferrer">Fisheye</a>, <a href="http://viewvc.org/" rel="noreferrer">ViewVC</a>, or (my favorite) <a href="http://www.sventon.org/" rel="noreferrer">... | 63, 80, 1551, 12660 | apache, mod-dav-svn, svn, trac | <h1>Why choose mod_dav_svn instead of svnserve & a repository browser?</h1>
<p>Please correct me if I am wrong about my understanding of mod_dav_svn, which is that it basically serves 2 purposes:</p>
<ol>
<li>Expose the SVN repository (on the filesystem) to clients, which can be either:
<ul>
<li>repository browsers (e... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,684 | svn | # Why choose mod_dav_svn instead of svnserve & a repository browser?
Please correct me if I am wrong about my understanding of mod_dav_svn, which is that it basically serves 2 purposes:
1. Expose the SVN repository (on the filesystem) to clients, which can be either:
- repository browsers (e.g. web)
- the 'svn'... | Forget Point #2: HTTP Browsing. That's just a slight bonus. It doesn't replace your need for something like [Fisheye](http://www.atlassian.com/software/fisheye/), [ViewVC](http://viewvc.org/), or (my favorite) [Sventon](http://www.sventon.org/).
There are some disadvantages of using Apache's http for your Subversion s... |
18958877 | How do I stop IntelliJ searching for Incoming SVN Changes? | 11 | 2013-09-23 12:08:11 | <p>My IntelliJ IDE (12.1.4) periodically searches for incoming changes in my connected SVN repositories. When I first installed IntelliJ these incoming changes weren't searched for automatically - if I remember correctly I had to click on the refresh button in the Incoming sub-tab within the Changes tab and set some op... | 7,586 | 2,399,427 | 2016-02-29 08:54:47 | 18,960,088 | 16 | 2013-09-23 13:08:07 | 1,993,366 | 2013-09-23 13:08:07 | https://stackoverflow.com/q/18958877 | https://stackoverflow.com/a/18960088 | <p>Sure, like this:</p>
<ul>
<li>Go to the same place as where you turned the automatic refresh feature on (the version control pane, marked by <code>9: Changes</code>, and then the <code>Repository</code> tab)</li>
<li>Hit the red X to <code>Clear</code> the VCS history cache (note: this won't delete anything importa... | <p>Sure, like this:</p> <ul> <li>Go to the same place as where you turned the automatic refresh feature on (the version control pane, marked by <code>9: Changes</code>, and then the <code>Repository</code> tab)</li> <li>Hit the red X to <code>Clear</code> the VCS history cache (note: this won't delete anything importa... | 63, 8945 | intellij-idea, svn | <h1>How do I stop IntelliJ searching for Incoming SVN Changes?</h1>
<p>My IntelliJ IDE (12.1.4) periodically searches for incoming changes in my connected SVN repositories. When I first installed IntelliJ these incoming changes weren't searched for automatically - if I remember correctly I had to click on the refresh b... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,685 | svn | # How do I stop IntelliJ searching for Incoming SVN Changes?
My IntelliJ IDE (12.1.4) periodically searches for incoming changes in my connected SVN repositories. When I first installed IntelliJ these incoming changes weren't searched for automatically - if I remember correctly I had to click on the refresh button in ... | Sure, like this:
- Go to the same place as where you turned the automatic refresh feature on (the version control pane, marked by `9: Changes`, and then the `Repository` tab)
- Hit the red X to `Clear` the VCS history cache (note: this won't delete anything important!)
- Hit the first icon with 2 circular blue arrows ... |
831335 | Is there an SVN command to find the difference between two local files? | 11 | 2009-05-06 19:36:31 | <p>What is the SVN command to find the difference between two files on the hard disk (neither of which are in the repository)?</p>
<p>What is the command to find if one of the file is in a particular revision of SVN?</p>
<p>What are some of the cool things you do using SVN commands?</p>
| 20,754 | 55,562 | 2020-05-13 08:18:43 | 831,389 | 16 | 2009-05-06 19:45:38 | 97,828 | 2009-05-06 19:45:38 | https://stackoverflow.com/q/831335 | https://stackoverflow.com/a/831389 | <p>You don't use SVN to diff files that aren't in the repository. If you are using linux then use the command:</p>
<pre><code>diff file1 file2
</code></pre>
<p>If you are using Windows then try a tool like <a href="http://winmerge.org/" rel="noreferrer">win merge</a> for example</p>
<p>To find information about a fi... | <p>You don't use SVN to diff files that aren't in the repository. If you are using linux then use the command:</p> <pre><code>diff file1 file2 </code></pre> <p>If you are using Windows then try a tool like <a href="http://winmerge.org/" rel="noreferrer">win merge</a> for example</p> <p>To find information about a fi... | 63, 606 | diff, svn | <h1>Is there an SVN command to find the difference between two local files?</h1>
<p>What is the SVN command to find the difference between two files on the hard disk (neither of which are in the repository)?</p>
<p>What is the command to find if one of the file is in a particular revision of SVN?</p>
<p>What are some... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,686 | svn | # Is there an SVN command to find the difference between two local files?
What is the SVN command to find the difference between two files on the hard disk (neither of which are in the repository)?
What is the command to find if one of the file is in a particular revision of SVN?
What are some of the cool things you... | You don't use SVN to diff files that aren't in the repository. If you are using linux then use the command:
```
diff file1 file2
```
If you are using Windows then try a tool like [win merge](http://winmerge.org/) for example
To find information about a file in the repository then use the command:
```
svn info file
... |
2086957 | Can we tell CruiseControl.NET to ignore source control timeout errors? | 10 | 2010-01-18 15:15:59 | <p>We have CruiseControl.NET set up to do continuous integration of a number of our projects.</p>
<p>We are using a <code><cb:define></code> block to make sure all of our source control operations are done in the same way, and to keep the config DRY.</p>
<p>We are experiencing an issue every once in a while tha... | 5,669 | 57,986 | 2011-12-17 04:08:43 | 2,086,994 | 16 | 2010-01-18 15:21:00 | 55,408 | 2011-10-26 03:36:41 | https://stackoverflow.com/q/2086957 | https://stackoverflow.com/a/2086994 | <p>Here's a block I use to prevent these kinds of errors affecting the build status:</p>
<pre><code><maxSourceControlRetries>5</maxSourceControlRetries>
<stopProjectOnReachingMaxSourceControlRetries>true</stopProjectOnReachingMaxSourceControlRetries>
<sourceControlErrorHandling>ReportOnRe... | <p>Here's a block I use to prevent these kinds of errors affecting the build status:</p> <pre><code><maxSourceControlRetries>5</maxSourceControlRetries> <stopProjectOnReachingMaxSourceControlRetries>true</stopProjectOnReachingMaxSourceControlRetries> <sourceControlErrorHandling>ReportOnRe... | 63, 264, 1066 | continuous-integration, cruisecontrol.net, svn | <h1>Can we tell CruiseControl.NET to ignore source control timeout errors?</h1>
<p>We have CruiseControl.NET set up to do continuous integration of a number of our projects.</p>
<p>We are using a <code><cb:define></code> block to make sure all of our source control operations are done in the same way, and to kee... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,687 | svn | # Can we tell CruiseControl.NET to ignore source control timeout errors?
We have CruiseControl.NET set up to do continuous integration of a number of our projects.
We are using a `<cb:define>` block to make sure all of our source control operations are done in the same way, and to keep the config DRY.
We are experie... | Here's a block I use to prevent these kinds of errors affecting the build status:
```
<maxSourceControlRetries>5</maxSourceControlRetries>
<stopProjectOnReachingMaxSourceControlRetries>true</stopProjectOnReachingMaxSourceControlRetries>
<sourceControlErrorHandling>ReportOnRetryAmount</sourceControlErrorHandling>
```
... |
2002135 | Subversion - Always resolve conflicts using mine for a set of files | 10 | 2010-01-04 20:48:47 | <p>We've got a sizable chunk of auto-generated code that we keep around in subversion. Sometimes I'm working on a piece of the generator while another coworker is working on a different piece of the generator. One of us checks in, and the other gets the latest. Now our generated code is in conflict. Because it's ge... | 19,267 | 156,767 | 2016-01-27 21:37:51 | 2,002,323 | 16 | 2010-01-04 21:22:03 | 1,605 | 2016-01-27 21:37:51 | https://stackoverflow.com/q/2002135 | https://stackoverflow.com/a/2002323 | <p>You should probably avoid having generated files in SVN in the first place - as you can tell, this is a source of conflicts. Better to have them be ignored, and build them as part of the build.</p>
<p>But as to your question, you should be able to use the <code>--accept mine-full</code> option to <code>svn update</... | <p>You should probably avoid having generated files in SVN in the first place - as you can tell, this is a source of conflicts. Better to have them be ignored, and build them as part of the build.</p> <p>But as to your question, you should be able to use the <code>--accept mine-full</code> option to <code>svn update</... | 63, 3146 | conflict, svn | <h1>Subversion - Always resolve conflicts using mine for a set of files</h1>
<p>We've got a sizable chunk of auto-generated code that we keep around in subversion. Sometimes I'm working on a piece of the generator while another coworker is working on a different piece of the generator. One of us checks in, and the ot... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,688 | svn | # Subversion - Always resolve conflicts using mine for a set of files
We've got a sizable chunk of auto-generated code that we keep around in subversion. Sometimes I'm working on a piece of the generator while another coworker is working on a different piece of the generator. One of us checks in, and the other gets th... | You should probably avoid having generated files in SVN in the first place - as you can tell, this is a source of conflicts. Better to have them be ignored, and build them as part of the build.
But as to your question, you should be able to use the `--accept mine-full` option to `svn update`, which makes conflicts aut... |
25450834 | Subversion merge requires "Old style" even though all seems up to date? | 9 | 2014-08-22 15:44:45 | <p>I recently moved from an old subversion server/repository to the latest version 1.8.9. The new repository was made from scratch on a new server and the old data was imported from scratch (we checked out the code from the old repository, exported it locally to remove all SVN bindings and checked it in a fresh into th... | 4,058 | 542,251 | 2019-09-23 17:38:42 | 25,525,371 | 16 | 2014-08-27 10:57:18 | 761,095 | 2019-09-23 17:38:42 | https://stackoverflow.com/q/25450834 | https://stackoverflow.com/a/25525371 | <blockquote>
<p>I wish to know what are the practical differences between "old style"
merging and "new style"</p>
</blockquote>
<p>TortoiseSVN Manual hasn't been updated yet to cover the new automatic reintegration merge feature and still <a href="http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-merge.h... | <blockquote> <p>I wish to know what are the practical differences between "old style" merging and "new style"</p> </blockquote> <p>TortoiseSVN Manual hasn't been updated yet to cover the new automatic reintegration merge feature and still <a href="http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-merge.h... | 63, 456, 656, 717 | merge, svn, tortoisesvn, version-control | <h1>Subversion merge requires "Old style" even though all seems up to date?</h1>
<p>I recently moved from an old subversion server/repository to the latest version 1.8.9. The new repository was made from scratch on a new server and the old data was imported from scratch (we checked out the code from the old repository,... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,689 | svn | # Subversion merge requires "Old style" even though all seems up to date?
I recently moved from an old subversion server/repository to the latest version 1.8.9. The new repository was made from scratch on a new server and the old data was imported from scratch (we checked out the code from the old repository, exported... | > I wish to know what are the practical differences between "old style"
> merging and "new style"
TortoiseSVN Manual hasn't been updated yet to cover the new automatic reintegration merge feature and still [contains instructions for the old workflow (the one called 'old style')](http://tortoisesvn.net/docs/release/Tor... |
8318290 | R.Java not generated | 9 | 2011-11-29 21:56:43 | <p>I have downloaded code from <a href="http://android-misc-widgets.googlecode.com/svn/trunk" rel="noreferrer">google codes</a> but when I import that project in my eclipse IDE
it does not generate R.Java file.I searched many blogs and forums and tried many things like cleaning ,rebuilding, creating project from existi... | 31,209 | 818,731 | 2017-08-27 09:18:28 | 8,318,940 | 16 | 2011-11-29 22:57:14 | 873,875 | 2011-11-29 22:57:14 | https://stackoverflow.com/q/8318290 | https://stackoverflow.com/a/8318940 | <p>In general, to make it work: </p>
<ol>
<li>import project into eclipse (File -> Import -> General -> Existing Projects into Workspace) </li>
<li>in Eclipse, Manually create gen folder and add it as source folder (right click on your project, Build Path -> Configure Build Path -> Add folder) </li>
<li>Clean your ... | <p>In general, to make it work: </p> <ol> <li>import project into eclipse (File -> Import -> General -> Existing Projects into Workspace) </li> <li>in Eclipse, Manually create gen folder and add it as source folder (right click on your project, Build Path -> Configure Build Path -> Add folder) </li> <li>Clean your ... | 53, 656, 1386, 45796, 63790 | android, eclipse, r.java-file, svn-client, tortoisesvn | <h1>R.Java not generated</h1>
<p>I have downloaded code from <a href="http://android-misc-widgets.googlecode.com/svn/trunk" rel="noreferrer">google codes</a> but when I import that project in my eclipse IDE
it does not generate R.Java file.I searched many blogs and forums and tried many things like cleaning ,rebuilding... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,690 | svn | # R.Java not generated
I have downloaded code from [google codes](http://android-misc-widgets.googlecode.com/svn/trunk) but when I import that project in my eclipse IDE
it does not generate R.Java file.I searched many blogs and forums and tried many things like cleaning ,rebuilding, creating project from existing sour... | In general, to make it work:
1. import project into eclipse (File -> Import -> General -> Existing Projects into Workspace)
2. in Eclipse, Manually create gen folder and add it as source folder (right click on your project, Build Path -> Configure Build Path -> Add folder)
3. Clean your project, you suppose to get R.j... |
6901626 | Exclude files by wildcard through Tortoise SVN shell menu | 9 | 2011-08-01 16:39:56 | <p>I am using Tortoise SVN 1.6.16 in Windows 7. If I have a certain file type I want to exclude from future commits, I thought I could just go find a file of that type within my working folder, then right click it, and select "TortoiseSVN->Delete and Add to Ignore List->*.ext" where ext is the file extension of the fil... | 8,711 | 380,329 | 2015-08-29 17:15:57 | 6,915,666 | 16 | 2011-08-02 16:56:55 | 115,690 | 2011-08-02 16:56:55 | https://stackoverflow.com/q/6901626 | https://stackoverflow.com/a/6915666 | <p>I had the same hunch as @Stefan: that you were probably seeing files in subdirectories and thinking those should have also been ignored even though you only applied the ignore to a single folder.</p>
<p>So if that is in fact the case, here is the recipe:</p>
<p><strong>When you want to ignore files or patterns fro... | <p>I had the same hunch as @Stefan: that you were probably seeing files in subdirectories and thinking those should have also been ignored even though you only applied the ignore to a single folder.</p> <p>So if that is in fact the case, here is the recipe:</p> <p><strong>When you want to ignore files or patterns fro... | 656, 1280 | file-extension, tortoisesvn | <h1>Exclude files by wildcard through Tortoise SVN shell menu</h1>
<p>I am using Tortoise SVN 1.6.16 in Windows 7. If I have a certain file type I want to exclude from future commits, I thought I could just go find a file of that type within my working folder, then right click it, and select "TortoiseSVN->Delete and Ad... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,691 | svn | # Exclude files by wildcard through Tortoise SVN shell menu
I am using Tortoise SVN 1.6.16 in Windows 7. If I have a certain file type I want to exclude from future commits, I thought I could just go find a file of that type within my working folder, then right click it, and select "TortoiseSVN->Delete and Add to Igno... | I had the same hunch as @Stefan: that you were probably seeing files in subdirectories and thinking those should have also been ignored even though you only applied the ignore to a single folder.
So if that is in fact the case, here is the recipe:
**When you want to ignore files or patterns from a single directory:**... |
11187243 | Configure Subversion plugin in Jenkins to use 1.6 working copy | 8 | 2012-06-25 10:07:28 | <p>I use the Jenkins Subversion plugin to checkout a working copy in Jenkins. A separate SVN client is used to extract some information from this working copy (which branch was used, which revision, etc.).</p>
<p>The Subversion plugin creates a 1.7 working copy, which the other client can't handle (it is 1.6). <strong... | 15,350 | 971,090 | 2016-05-23 09:13:20 | 11,187,975 | 16 | 2012-06-25 10:55:06 | 1,178,189 | 2012-06-25 10:55:06 | https://stackoverflow.com/q/11187243 | https://stackoverflow.com/a/11187975 | <p>On main Jenkins configurations page (<code>http:/<jenkins_server>/configure</code>) search for <em>Subversion Workspace Version</em> and set it to appropriate value (1.6).</p>
| <p>On main Jenkins configurations page (<code>http:/<jenkins_server>/configure</code>) search for <em>Subversion Workspace Version</em> and set it to appropriate value (1.6).</p> | 63, 8855, 64999 | jenkins, svn, svnkit | <h1>Configure Subversion plugin in Jenkins to use 1.6 working copy</h1>
<p>I use the Jenkins Subversion plugin to checkout a working copy in Jenkins. A separate SVN client is used to extract some information from this working copy (which branch was used, which revision, etc.).</p>
<p>The Subversion plugin creates a 1.... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,692 | svn | # Configure Subversion plugin in Jenkins to use 1.6 working copy
I use the Jenkins Subversion plugin to checkout a working copy in Jenkins. A separate SVN client is used to extract some information from this working copy (which branch was used, which revision, etc.).
The Subversion plugin creates a 1.7 working copy, ... | On main Jenkins configurations page (`http:/<jenkins_server>/configure`) search for *Subversion Workspace Version* and set it to appropriate value (1.6). |
10419338 | Tortoise SVN ignoring .so files | 8 | 2012-05-02 18:11:15 | <p>Tortoise SVN on windows is ignoring the .so files. How can I set it to not ignore them, so that I'm able to commit such files.</p>
| 3,328 | 760,807 | 2023-04-26 12:52:17 | 10,419,366 | 16 | 2012-05-02 18:13:38 | 760,807 | 2012-05-02 18:13:38 | https://stackoverflow.com/q/10419338 | https://stackoverflow.com/a/10419366 | <p>Go to <code>settings</code> and remove *.so from <code>Global ignore pattern</code>.</p>
| <p>Go to <code>settings</code> and remove *.so from <code>Global ignore pattern</code>.</p> | 63, 656, 8952 | shared-libraries, svn, tortoisesvn | <h1>Tortoise SVN ignoring .so files</h1>
<p>Tortoise SVN on windows is ignoring the .so files. How can I set it to not ignore them, so that I'm able to commit such files.</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,693 | svn | # Tortoise SVN ignoring .so files
Tortoise SVN on windows is ignoring the .so files. How can I set it to not ignore them, so that I'm able to commit such files. | Go to `settings` and remove *.so from `Global ignore pattern`. |
5905173 | How do I get a list of the subversion projects stored in a database when all I know is the path of the database? | 8 | 2011-05-05 23:22:30 | <p>We are currently using git and the git repo only goes back to when the subversion repo was imported with no history. We are being asked to produce earlier version of the source code for a project that predates all of us. I was able to locate where the original subversion database was located in the file system of ... | 13,110 | 640,404 | 2011-05-06 00:02:27 | 5,905,433 | 16 | 2011-05-06 00:02:27 | 640,404 | 2011-05-06 00:02:27 | https://stackoverflow.com/q/5905173 | https://stackoverflow.com/a/5905433 | <p>Smacking my forehead for asking this. All I had to do was simply install the subversion server on the machine and start it:</p>
<pre><code>svnserve -d
</code></pre>
<p>then I was able to get a list of the repos in it:</p>
<pre><code>svn list --verbose file:///store/svn/project
3659 john 21 Oct ... | <p>Smacking my forehead for asking this. All I had to do was simply install the subversion server on the machine and start it:</p> <pre><code>svnserve -d </code></pre> <p>then I was able to get a list of the repos in it:</p> <pre><code>svn list --verbose file:///store/svn/project 3659 john 21 Oct ... | 63 | svn | <h1>How do I get a list of the subversion projects stored in a database when all I know is the path of the database?</h1>
<p>We are currently using git and the git repo only goes back to when the subversion repo was imported with no history. We are being asked to produce earlier version of the source code for a projec... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,694 | svn | # How do I get a list of the subversion projects stored in a database when all I know is the path of the database?
We are currently using git and the git repo only goes back to when the subversion repo was imported with no history. We are being asked to produce earlier version of the source code for a project that pre... | Smacking my forehead for asking this. All I had to do was simply install the subversion server on the machine and start it:
```
svnserve -d
```
then I was able to get a list of the repos in it:
```
svn list --verbose file:///store/svn/project
3659 john 21 Oct 29 2008 .gitignore
7946 charlie ... |
1103308 | install svn client on redhat RHEL5 | 8 | 2009-07-09 11:34:26 | <p>How do I install svn on a Redhat machine?</p>
<p>Tried to do it with <code>yum install svn</code> - but it didn't find svn.</p>
<p>My machine details are</p>
<p>Red Hat Enterprise Linux Server release 5.2 (Tikanga)</p>
<p>Found it with this command
/etc/redhat-release</p>
<p>Thanks</p>
| 23,269 | 117,196 | 2015-03-11 11:57:25 | 1,103,314 | 16 | 2009-07-09 11:37:43 | 70,393 | 2009-07-09 11:37:43 | https://stackoverflow.com/q/1103308 | https://stackoverflow.com/a/1103314 | <p>Try:</p>
<pre><code>yum install subversion
</code></pre>
| <p>Try:</p> <pre><code>yum install subversion </code></pre> | 58, 63, 529, 2205 | installation, linux, redhat, svn | <h1>install svn client on redhat RHEL5</h1>
<p>How do I install svn on a Redhat machine?</p>
<p>Tried to do it with <code>yum install svn</code> - but it didn't find svn.</p>
<p>My machine details are</p>
<p>Red Hat Enterprise Linux Server release 5.2 (Tikanga)</p>
<p>Found it with this command
/etc/redhat-release<... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,695 | svn | # install svn client on redhat RHEL5
How do I install svn on a Redhat machine?
Tried to do it with `yum install svn` - but it didn't find svn.
My machine details are
Red Hat Enterprise Linux Server release 5.2 (Tikanga)
Found it with this command
/etc/redhat-release
Thanks | Try:
```
yum install subversion
``` |
8907920 | SVN command returned with the following error | 7 | 2012-01-18 09:36:32 | <p>When I want to commit my project to SVN, the following error pops out: </p>
<pre><code>org.tigris.subversion.javahl.ClientException:
Working copy '/media/Data/NETBEANS_PROJECTS/myproject/web/pages/ajax-fragments' locked; try performing 'cleanup'
</code></pre>
<p>I use NetBeans 7.1 (tried with 7.0.1 and 6.9, the sa... | 20,030 | 715,437 | 2017-11-22 08:28:33 | 8,907,958 | 16 | 2012-01-18 09:39:02 | 83,109 | 2012-01-18 09:39:02 | https://stackoverflow.com/q/8907920 | https://stackoverflow.com/a/8907958 | <p>Run a Subversion cleanup command. From the command line, change to your working directory and run:</p>
<pre><code>svn cleanup
</code></pre>
<p>If this fails, you may need to get a new working copy and manually copy your changes in.</p>
| <p>Run a Subversion cleanup command. From the command line, change to your working directory and run:</p> <pre><code>svn cleanup </code></pre> <p>If this fails, you may need to get a new working copy and manually copy your changes in.</p> | 63, 2176 | netbeans, svn | <h1>SVN command returned with the following error</h1>
<p>When I want to commit my project to SVN, the following error pops out: </p>
<pre><code>org.tigris.subversion.javahl.ClientException:
Working copy '/media/Data/NETBEANS_PROJECTS/myproject/web/pages/ajax-fragments' locked; try performing 'cleanup'
</code></pre>
... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,696 | svn | # SVN command returned with the following error
When I want to commit my project to SVN, the following error pops out:
```
org.tigris.subversion.javahl.ClientException:
Working copy '/media/Data/NETBEANS_PROJECTS/myproject/web/pages/ajax-fragments' locked; try performing 'cleanup'
```
I use NetBeans 7.1 (tried with ... | Run a Subversion cleanup command. From the command line, change to your working directory and run:
```
svn cleanup
```
If this fails, you may need to get a new working copy and manually copy your changes in. |
8467526 | SVN certificate trust error with XCode 4.2 or Coda, but not with command-line or svnX | 7 | 2011-12-11 21:15:15 | <p>I just got a new Mac (with Lion) and am setting everything up, but I am stuck on this SVN certificate trust error for my repositories on Assembla. </p>
<p>The most common solution seems to be to move to Terminal and perform some svn operation on my working copy there, then respond to permanently trust the certifica... | 9,623 | 1,092,703 | 2012-04-16 14:11:47 | 8,900,670 | 16 | 2012-01-17 19:40:51 | 128,748 | 2012-04-16 14:11:47 | https://stackoverflow.com/q/8467526 | https://stackoverflow.com/a/8900670 | <p>You need to make sure you use the svn binary in the Developer Tools package. If you go to the directory under version control and type</p>
<pre><code>/Developer/usr/bin/svn up
</code></pre>
<p>You should be prompted to accept the cert, press p to accept permanently and then xcode should work.</p>
<p>On newer vers... | <p>You need to make sure you use the svn binary in the Developer Tools package. If you go to the directory under version control and type</p> <pre><code>/Developer/usr/bin/svn up </code></pre> <p>You should be prompted to accept the cert, press p to accept permanently and then xcode should work.</p> <p>On newer vers... | 63, 908, 29238, 69874 | coda, svn, xcode, xcode4.2 | <h1>SVN certificate trust error with XCode 4.2 or Coda, but not with command-line or svnX</h1>
<p>I just got a new Mac (with Lion) and am setting everything up, but I am stuck on this SVN certificate trust error for my repositories on Assembla. </p>
<p>The most common solution seems to be to move to Terminal and perfo... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,697 | svn | # SVN certificate trust error with XCode 4.2 or Coda, but not with command-line or svnX
I just got a new Mac (with Lion) and am setting everything up, but I am stuck on this SVN certificate trust error for my repositories on Assembla.
The most common solution seems to be to move to Terminal and perform some svn opera... | You need to make sure you use the svn binary in the Developer Tools package. If you go to the directory under version control and type
```
/Developer/usr/bin/svn up
```
You should be prompted to accept the cert, press p to accept permanently and then xcode should work.
On newer versions of XCode 4 which come as an a... |
4984517 | svn update <directory> -r HEAD --force Still leaves dirty copies of local files | 6 | 2011-02-13 13:57:15 | <p>I want to update to the latest revision of selenium code(http://selenium.googlecode.com/svn/trunk) daily.</p>
<p>I just select the folder in my eclipse,right click,team and select update to HEAD.Buty , this leaves dirty copy of some directories and files..</p>
<p>What i am looking for is: <strong>I always want to ... | 6,044 | 305,684 | 2011-03-30 10:17:43 | 4,984,534 | 16 | 2011-02-13 13:59:52 | 129,570 | 2011-02-13 13:59:52 | https://stackoverflow.com/q/4984517 | https://stackoverflow.com/a/4984534 | <p>You need to do a <code>svn revert -R <directory></code> first.</p>
<p><code>svn update --force</code> forces the update to overwrite <em>unversioned</em> files, not local changes to versioned files.</p>
| <p>You need to do a <code>svn revert -R <directory></code> first.</p> <p><code>svn update --force</code> forces the update to overwrite <em>unversioned</em> files, not local changes to versioned files.</p> | 53, 63 | eclipse, svn | <h1>svn update <directory> -r HEAD --force Still leaves dirty copies of local files</h1>
<p>I want to update to the latest revision of selenium code(http://selenium.googlecode.com/svn/trunk) daily.</p>
<p>I just select the folder in my eclipse,right click,team and select update to HEAD.Buty , this leaves dirty copy of... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,698 | svn | # svn update -r HEAD --force Still leaves dirty copies of local files
I want to update to the latest revision of selenium code(http://selenium.googlecode.com/svn/trunk) daily.
I just select the folder in my eclipse,right click,team and select update to HEAD.Buty , this leaves dirty copy of some directories and files.... | You need to do a `svn revert -R <directory>` first.
`svn update --force` forces the update to overwrite *unversioned* files, not local changes to versioned files. |
772894 | Updating from svn repository returns "Could not read chunk size" error | 55 | 2009-04-21 14:39:06 | <p>When updating from subversion repository using tortoise svn client I get error looking like that:</p>
<pre><code>Could not read chunk size: An existing connection was forcibly closed by the remote host.
</code></pre>
<p>It doesn't prevent me from updating, just interrupts update process, so that I have to repeat u... | 64,528 | 93,827 | 2016-01-20 04:50:38 | 2,786,273 | 15 | 2010-05-07 04:48:31 | 94,152 | 2010-05-07 04:48:31 | https://stackoverflow.com/q/772894 | https://stackoverflow.com/a/2786273 | <p>I was getting the "Could not read chunk size" message from clients on several machines.</p>
<p>The key to figuring it out was this error in the Apache error log:</p>
<pre><code>[Fri May 07 14:26:26 2010] [error] [client 155.35.175.50] Provider encountered an error while streaming a REPORT response. [500, #0]
[Fri... | <p>I was getting the "Could not read chunk size" message from clients on several machines.</p> <p>The key to figuring it out was this error in the Apache error log:</p> <pre><code>[Fri May 07 14:26:26 2010] [error] [client 155.35.175.50] Provider encountered an error while streaming a REPORT response. [500, #0] [Fri... | 63, 281, 656 | connection, svn, tortoisesvn | <h1>Updating from svn repository returns "Could not read chunk size" error</h1>
<p>When updating from subversion repository using tortoise svn client I get error looking like that:</p>
<pre><code>Could not read chunk size: An existing connection was forcibly closed by the remote host.
</code></pre>
<p>It doesn't prev... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,699 | svn | # Updating from svn repository returns "Could not read chunk size" error
When updating from subversion repository using tortoise svn client I get error looking like that:
```
Could not read chunk size: An existing connection was forcibly closed by the remote host.
```
It doesn't prevent me from updating, just interr... | I was getting the "Could not read chunk size" message from clients on several machines.
The key to figuring it out was this error in the Apache error log:
```
[Fri May 07 14:26:26 2010] [error] [client 155.35.175.50] Provider encountered an error while streaming a REPORT response. [500, #0]
[Fri May 07 14:26:26 2010... |
1190345 | svn merge functionality broken by tree conflicts | 29 | 2009-07-27 20:09:06 | <p>I don't know when the svn team decided to inflict tree conflicts on us but it has completely broken the merge functionality of svn.</p>
<p>I have a branch and I want to merge the latest changes from the trunk into the branch. I've already done one such merge, but this one fails because of a tree conflict. Here's ... | 44,913 | 34,372 | 2017-03-16 19:16:16 | 1,200,583 | 15 | 2009-07-29 14:17:10 | 34,372 | 2009-07-29 14:17:10 | https://stackoverflow.com/q/1190345 | https://stackoverflow.com/a/1200583 | <p>The problem turned out to be that I had chosen the parent/ directory as the source of the merge instead of the parent/trunk/ directory. It was user error, but the tree conflict message is confusing. If svn had just gone ahead and done the merge I would have seen the problem instantly.</p>
<p>Tree conflicts have i... | <p>The problem turned out to be that I had chosen the parent/ directory as the source of the merge instead of the parent/trunk/ directory. It was user error, but the tree conflict message is confusing. If svn had just gone ahead and done the merge I would have seen the problem instantly.</p> <p>Tree conflicts have i... | 63, 717, 28636 | merge, svn, tree-conflict | <h1>svn merge functionality broken by tree conflicts</h1>
<p>I don't know when the svn team decided to inflict tree conflicts on us but it has completely broken the merge functionality of svn.</p>
<p>I have a branch and I want to merge the latest changes from the trunk into the branch. I've already done one such merg... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,700 | svn | # svn merge functionality broken by tree conflicts
I don't know when the svn team decided to inflict tree conflicts on us but it has completely broken the merge functionality of svn.
I have a branch and I want to merge the latest changes from the trunk into the branch. I've already done one such merge, but this one f... | The problem turned out to be that I had chosen the parent/ directory as the source of the merge instead of the parent/trunk/ directory. It was user error, but the tree conflict message is confusing. If svn had just gone ahead and done the merge I would have seen the problem instantly.
Tree conflicts have introduced ne... |
2155248 | SVN Switch Relocate - is not the root of the repository | 21 | 2010-01-28 14:43:05 | <p>I'm trying to move a working copy folder from it's old dedicated svn server, to a new svn server where it is contained within a sub-folder. Using the following relocate command:</p>
<pre><code>svn switch --relocate https://oldserver/svn/repos https://newserver/some/directory
</code></pre>
<p>I get:</p>
<pre><cod... | 37,302 | 161,525 | 2014-02-10 16:46:27 | 2,155,572 | 15 | 2010-01-28 15:22:25 | 232,235 | 2011-04-21 10:02:11 | https://stackoverflow.com/q/2155248 | https://stackoverflow.com/a/2155572 | <p>As far as I understand, you can't use <code>svn switch</code> (with or without <code>--relocate</code>) to move to a new repository. Think about it this way: your new repository's HEAD revision is x, your old repository's revision is y, so what is SVN supposed to do with the working copy's base revision?</p>
<p><co... | <p>As far as I understand, you can't use <code>svn switch</code> (with or without <code>--relocate</code>) to move to a new repository. Think about it this way: your new repository's HEAD revision is x, your old repository's revision is y, so what is SVN supposed to do with the working copy's base revision?</p> <p><co... | 63, 13066 | relocation, svn | <h1>SVN Switch Relocate - is not the root of the repository</h1>
<p>I'm trying to move a working copy folder from it's old dedicated svn server, to a new svn server where it is contained within a sub-folder. Using the following relocate command:</p>
<pre><code>svn switch --relocate https://oldserver/svn/repos https://... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,702 | svn | # SVN Switch Relocate - is not the root of the repository
I'm trying to move a working copy folder from it's old dedicated svn server, to a new svn server where it is contained within a sub-folder. Using the following relocate command:
```
svn switch --relocate https://oldserver/svn/repos https://newserver/some/direc... | As far as I understand, you can't use `svn switch` (with or without `--relocate`) to move to a new repository. Think about it this way: your new repository's HEAD revision is x, your old repository's revision is y, so what is SVN supposed to do with the working copy's base revision?
`svn help switch` says that `--relo... |
25140125 | SVN - Summary of conflicts: Skipped paths : 1 | 18 | 2014-08-05 13:32:23 | <p>I recently tried to do an <strong>svn up</strong> and got the following:</p>
<pre><code>Conflict discovered in 'myapp/protected/config/myapp/mode_staging.php'
</code></pre>
<p>I was given a number of options and I (probably the wrong choice now) choose to [p] Postone.</p>
<p>Now when I try to run the svn up I get... | 35,906 | 218,725 | 2016-06-14 11:11:59 | 25,140,252 | 15 | 2014-08-05 13:38:46 | 761,095 | 2014-08-05 13:38:46 | https://stackoverflow.com/q/25140125 | https://stackoverflow.com/a/25140252 | <p>Some uncommitted changes you have in mode_staging.php in your working copy conflict with incoming changes from the repository (which you get when running <code>svn update</code>). By choosing option [P], you've <a href="http://svnbook.red-bean.com/en/1.8/svn.tour.cycle.html#svn.tour.cycle.resolve.pending">instructed... | <p>Some uncommitted changes you have in mode_staging.php in your working copy conflict with incoming changes from the repository (which you get when running <code>svn update</code>). By choosing option [P], you've <a href="http://svnbook.red-bean.com/en/1.8/svn.tour.cycle.html#svn.tour.cycle.resolve.pending">instructed... | 63, 456, 1231 | command-line, svn, version-control | <h1>SVN - Summary of conflicts: Skipped paths : 1</h1>
<p>I recently tried to do an <strong>svn up</strong> and got the following:</p>
<pre><code>Conflict discovered in 'myapp/protected/config/myapp/mode_staging.php'
</code></pre>
<p>I was given a number of options and I (probably the wrong choice now) choose to [p] ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,703 | svn | # SVN - Summary of conflicts: Skipped paths : 1
I recently tried to do an **svn up** and got the following:
```
Conflict discovered in 'myapp/protected/config/myapp/mode_staging.php'
```
I was given a number of options and I (probably the wrong choice now) choose to [p] Postone.
Now when I try to run the svn up I g... | Some uncommitted changes you have in mode_staging.php in your working copy conflict with incoming changes from the repository (which you get when running `svn update`). By choosing option [P], you've [instructed the client to postpone conflict resolution](http://svnbook.red-bean.com/en/1.8/svn.tour.cycle.html#svn.tour.... |
13657359 | Why does SVN take so much space? | 18 | 2012-12-01 07:22:33 | <p>I am working on a large sized project that is about 1020 MB in size. This is because, apart from the code, we have other resources, like graphics, XML configurations, etc. in the version control.</p>
<p>The size of the .svn-base files is about 998 MB, making the total checkout size about 2 GB. By my ... | 12,466 | 1,345,655 | 2016-11-19 22:51:37 | 13,657,368 | 15 | 2012-12-01 07:23:32 | 541,686 | 2012-12-02 18:17:37 | https://stackoverflow.com/q/13657359 | https://stackoverflow.com/a/13657368 | <p>So that <code>svn revert</code> doesn't need to contact the server.</p>
<p>SVN actually stores another copy of the file locally. That's why the <code>.svn</code> dirs sum up to be almost as the project code base itself.</p>
| <p>So that <code>svn revert</code> doesn't need to contact the server.</p> <p>SVN actually stores another copy of the file locally. That's why the <code>.svn</code> dirs sum up to be almost as the project code base itself.</p> | 63 | svn | <h1>Why does SVN take so much space?</h1>
<p>I am working on a large sized project that is about 1020 MB in size. This is because, apart from the code, we have other resources, like graphics, XML configurations, etc. in the version control.</p>
<p>The size of the .svn-base files is about 998 MB, making the t... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,704 | svn | # Why does SVN take so much space?
I am working on a large sized project that is about 1020 MB in size. This is because, apart from the code, we have other resources, like graphics, XML configurations, etc. in the version control.
The size of the .svn-base files is about 998 MB, making the total checkout size about 2... | So that `svn revert` doesn't need to contact the server.
SVN actually stores another copy of the file locally. That's why the `.svn` dirs sum up to be almost as the project code base itself. |
18474825 | What is the cause of "svn: E195019: Redirect cycle detected for URL"? | 16 | 2013-08-27 20:29:50 | <p>Trying to checkout from my SVN repo gives me</p>
<pre>
svn: E195019: Redirect cycle detected for URL ...
</pre>
<p>However, it appears as if this error only occurs when I am behind some (specific) proxy server.</p>
<p>As discussed in other post (see <a href="https://stackoverflow.com/questions/10524646/tortoi... | 46,031 | 231,397 | 2022-06-22 11:28:04 | 18,474,826 | 15 | 2013-08-27 20:29:50 | 231,397 | 2013-10-02 07:39:18 | https://stackoverflow.com/q/18474825 | https://stackoverflow.com/a/18474826 | <p>(I given an answer to my own question, after using half a weekend to search for the solution):</p>
<p>It appears as if this error message is related to the fact that the subversion repository is located in a directory <code>svn/myrepo</code> where the directory <code>svn</code> is also listed as the DocumentRoot of... | <p>(I given an answer to my own question, after using half a weekend to search for the solution):</p> <p>It appears as if this error message is related to the fact that the subversion repository is located in a directory <code>svn/myrepo</code> where the directory <code>svn</code> is also listed as the DocumentRoot of... | 63, 1992, 3922, 5876 | apache2, svn, webdav, websvn | <h1>What is the cause of "svn: E195019: Redirect cycle detected for URL"?</h1>
<p>Trying to checkout from my SVN repo gives me</p>
<pre>
svn: E195019: Redirect cycle detected for URL ...
</pre>
<p>However, it appears as if this error only occurs when I am behind some (specific) proxy server.</p>
<p>As discussed ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,705 | svn | # What is the cause of "svn: E195019: Redirect cycle detected for URL"?
Trying to checkout from my SVN repo gives me
```
svn: E195019: Redirect cycle detected for URL ...
```
However, it appears as if this error only occurs when I am behind some (specific) proxy server.
As discussed in other post (see [tortoise... | (I given an answer to my own question, after using half a weekend to search for the solution):
It appears as if this error message is related to the fact that the subversion repository is located in a directory `svn/myrepo` where the directory `svn` is also listed as the DocumentRoot of the subdomain `svn.mydomain.com... |
14606888 | Reconnecting a project to SVN in Eclipse | 15 | 2013-01-30 14:55:33 | <p>I have a project that has been versioned by SVN for months, but now all of a sudden it seems that Eclipse does not recognize the project as being under version control. In the team menu, I only have Apply Patch... and Share Project...</p>
<p>I tried Share Project as suggested elsewhere, but Eclipse doesn't recogniz... | 31,791 | 1,512,982 | 2023-11-11 01:41:00 | 14,632,778 | 15 | 2013-01-31 18:37:26 | 1,639,625 | 2013-01-31 18:37:26 | https://stackoverflow.com/q/14606888 | https://stackoverflow.com/a/14632778 | <p>There are a few things that you can try.</p>
<ul>
<li>If the project is in synch with SVN, probably the easiest way is to delete it and check it out anew.</li>
<li>Otherwise, you can try to delete the project from your workspace (<em>not</em> from disk!) and to re-import it into the workspace.</li>
<li>If that does... | <p>There are a few things that you can try.</p> <ul> <li>If the project is in synch with SVN, probably the easiest way is to delete it and check it out anew.</li> <li>Otherwise, you can try to delete the project from your workspace (<em>not</em> from disk!) and to re-import it into the workspace.</li> <li>If that does... | 53, 63 | eclipse, svn | <h1>Reconnecting a project to SVN in Eclipse</h1>
<p>I have a project that has been versioned by SVN for months, but now all of a sudden it seems that Eclipse does not recognize the project as being under version control. In the team menu, I only have Apply Patch... and Share Project...</p>
<p>I tried Share Project as... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,707 | svn | # Reconnecting a project to SVN in Eclipse
I have a project that has been versioned by SVN for months, but now all of a sudden it seems that Eclipse does not recognize the project as being under version control. In the team menu, I only have Apply Patch... and Share Project...
I tried Share Project as suggested elsew... | There are a few things that you can try.
- If the project is in synch with SVN, probably the easiest way is to delete it and check it out anew.
- Otherwise, you can try to delete the project from your workspace (*not* from disk!) and to re-import it into the workspace.
- If that does not work, you can try to use the S... |
9548493 | Get svn log from repository, not working copy | 15 | 2012-03-03 18:02:53 | <p>I want to get the log's from a svn repository. Now, I'm capable of doing this in two ways, make a local repository and get the svn logs from there. Or, number 2, get it from the DAV/HTTP served svn repository.</p>
<p>Is there a way to get the svn logs directly from the repository folder? (The one with conf,db,gooks... | 9,516 | 367,680 | 2017-02-15 12:16:37 | 9,548,632 | 15 | 2012-03-03 18:20:08 | 112,968 | 2014-08-21 14:31:32 | https://stackoverflow.com/q/9548493 | https://stackoverflow.com/a/9548632 | <p>You have to use the <code>file://</code> protocol, so the parameter gets parsed as URL (repositories can only talked to with an URL):</p>
<pre><code>svn log file:///path/to/your/repo
</code></pre>
| <p>You have to use the <code>file://</code> protocol, so the parameter gets parsed as URL (repositories can only talked to with an URL):</p> <pre><code>svn log file:///path/to/your/repo </code></pre> | 58, 63 | linux, svn | <h1>Get svn log from repository, not working copy</h1>
<p>I want to get the log's from a svn repository. Now, I'm capable of doing this in two ways, make a local repository and get the svn logs from there. Or, number 2, get it from the DAV/HTTP served svn repository.</p>
<p>Is there a way to get the svn logs directly ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,708 | svn | # Get svn log from repository, not working copy
I want to get the log's from a svn repository. Now, I'm capable of doing this in two ways, make a local repository and get the svn logs from there. Or, number 2, get it from the DAV/HTTP served svn repository.
Is there a way to get the svn logs directly from the reposit... | You have to use the `file://` protocol, so the parameter gets parsed as URL (repositories can only talked to with an URL):
```
svn log file:///path/to/your/repo
``` |
4763832 | SVN "repair move" from the command-line | 15 | 2011-01-21 21:08:44 | <p>My IDE doesn't know that I use Subversion, and any time I rename a class (Java) it renames the file without notifying the version control system. I would of course like the file's history to be retained. I understand that in TortoiseSVN there is an option called "repair move" that fixes the move, but that's not an o... | 4,080 | 226,008 | 2015-06-11 11:13:06 | 4,763,989 | 15 | 2011-01-21 21:31:25 | 239,394 | 2011-01-21 21:31:25 | https://stackoverflow.com/q/4763832 | https://stackoverflow.com/a/4763989 | <p>If you remember the old name/location of the file:</p>
<pre><code>mv new-filename old-filename
svn mv old-filename new-filename
</code></pre>
<p>You, of course, need the Subversion command-line client installed, which you probably have. If not, <code>sudo aptitude install subversion subversion-client</code> shoul... | <p>If you remember the old name/location of the file:</p> <pre><code>mv new-filename old-filename svn mv old-filename new-filename </code></pre> <p>You, of course, need the Subversion command-line client installed, which you probably have. If not, <code>sudo aptitude install subversion subversion-client</code> shoul... | 63 | svn | <h1>SVN "repair move" from the command-line</h1>
<p>My IDE doesn't know that I use Subversion, and any time I rename a class (Java) it renames the file without notifying the version control system. I would of course like the file's history to be retained. I understand that in TortoiseSVN there is an option called "repa... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,709 | svn | # SVN "repair move" from the command-line
My IDE doesn't know that I use Subversion, and any time I rename a class (Java) it renames the file without notifying the version control system. I would of course like the file's history to be retained. I understand that in TortoiseSVN there is an option called "repair move" ... | If you remember the old name/location of the file:
```
mv new-filename old-filename
svn mv old-filename new-filename
```
You, of course, need the Subversion command-line client installed, which you probably have. If not, `sudo aptitude install subversion subversion-client` should do the trick.
Per your comment, no, ... |
2883196 | SharpSvn: Getting repository structure and individual files | 14 | 2010-05-21 15:01:56 | <p>I am trying to build a simple repository browser into a web application and have been looking into using SharpSvn to help.</p>
<p>I can find all the usual physical commands, like update, commit, that would actually make changes to the repository or a working copy but am struggling to find a way to query a repositor... | 9,700 | 64,573 | 2015-04-16 06:44:20 | 5,679,545 | 15 | 2011-04-15 16:11:31 | 691,790 | 2015-04-16 06:43:49 | https://stackoverflow.com/q/2883196 | https://stackoverflow.com/a/5679545 | <p>The <code>SharpSvn.SvnClient</code> class has a <a href="http://docs.sharpsvn.net/current/html/M_SharpSvn_SvnClient_GetList_1.htm" rel="noreferrer">GetList()</a> function that works really well:</p>
<pre><code>using (SvnClient svnClient = new SvnClient())
{
Collection<SvnListEventArgs> contents;
List<... | <p>The <code>SharpSvn.SvnClient</code> class has a <a href="http://docs.sharpsvn.net/current/html/M_SharpSvn_SvnClient_GetList_1.htm" rel="noreferrer">GetList()</a> function that works really well:</p> <pre><code>using (SvnClient svnClient = new SvnClient()) { Collection<SvnListEventArgs> contents; List<... | 9, 16557 | c#, sharpsvn | <h1>SharpSvn: Getting repository structure and individual files</h1>
<p>I am trying to build a simple repository browser into a web application and have been looking into using SharpSvn to help.</p>
<p>I can find all the usual physical commands, like update, commit, that would actually make changes to the repository o... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,711 | svn | # SharpSvn: Getting repository structure and individual files
I am trying to build a simple repository browser into a web application and have been looking into using SharpSvn to help.
I can find all the usual physical commands, like update, commit, that would actually make changes to the repository or a working copy... | The `SharpSvn.SvnClient` class has a [GetList()](http://docs.sharpsvn.net/current/html/M_SharpSvn_SvnClient_GetList_1.htm) function that works really well:
```
using (SvnClient svnClient = new SvnClient())
{
Collection<SvnListEventArgs> contents;
List<string> files = new List<string>();
if (svnClient.GetList(... |
6120091 | should I commit .xcodeproj file in SVN? | 13 | 2011-05-25 05:53:55 | <p>Should I commit the project file (.xcodeproj)? When I commit this file from one system and update it on a second system, the project gets corrupted and Xcode won't open it. </p>
<p>Is this expected behavior, or am I maybe doing something wrong? Here is my list of ignored files:</p>
<blockquote>
<p><code>*.o,*.lo... | 8,696 | 303,073 | 2011-05-25 06:22:19 | 6,120,152 | 15 | 2011-05-25 05:59:59 | 191,596 | 2011-05-25 06:22:19 | https://stackoverflow.com/q/6120091 | https://stackoverflow.com/a/6120152 | <p>do commit and track it. specifically, there are a few bits in there which you want - the most important is project.pbxproj. it looks like you have already ignored the user-specific pieces (which is good).</p>
<p>problem is, it will conflict often in distributed environments. break your projects and/or their definit... | <p>do commit and track it. specifically, there are a few bits in there which you want - the most important is project.pbxproj. it looks like you have already ignored the user-specific pieces (which is good).</p> <p>problem is, it will conflict often in distributed environments. break your projects and/or their definit... | 63, 908 | svn, xcode | <h1>should I commit .xcodeproj file in SVN?</h1>
<p>Should I commit the project file (.xcodeproj)? When I commit this file from one system and update it on a second system, the project gets corrupted and Xcode won't open it. </p>
<p>Is this expected behavior, or am I maybe doing something wrong? Here is my list of ign... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,713 | svn | # should I commit .xcodeproj file in SVN?
Should I commit the project file (.xcodeproj)? When I commit this file from one system and update it on a second system, the project gets corrupted and Xcode won't open it.
Is this expected behavior, or am I maybe doing something wrong? Here is my list of ignored files:
> `*... | do commit and track it. specifically, there are a few bits in there which you want - the most important is project.pbxproj. it looks like you have already ignored the user-specific pieces (which is good).
problem is, it will conflict often in distributed environments. break your projects and/or their definitions into ... |
1842029 | SVN commit fails: File already exists | 12 | 2009-12-03 18:48:16 | <p>I've got a file (mapViewController.m) which is in svn but I cannot commit changes to it. I tried to copy the file elsewhere and then update. The file does not come with the update so I copy it back. Then I can't commit changes to it.</p>
<p>This is hard to explain what is wrong... because I don't know. </p>
| 38,804 | 220,770 | 2021-08-02 17:18:25 | 1,842,135 | 15 | 2009-12-03 19:01:19 | 69,742 | 2009-12-03 19:01:19 | https://stackoverflow.com/q/1842029 | https://stackoverflow.com/a/1842135 | <p>The rule of thumb for all SVN problems is for when you can't figure something out, checkout a fresh copy to a new directory(if possible)</p>
<p>Try doing a fresh checkout and then replacing the file and then committing. </p>
<p>Also, make sure that you don't have to lock that file first. </p>
<p>It sounds a bit l... | <p>The rule of thumb for all SVN problems is for when you can't figure something out, checkout a fresh copy to a new directory(if possible)</p> <p>Try doing a fresh checkout and then replacing the file and then committing. </p> <p>Also, make sure that you don't have to lock that file first. </p> <p>It sounds a bit l... | 63 | svn | <h1>SVN commit fails: File already exists</h1>
<p>I've got a file (mapViewController.m) which is in svn but I cannot commit changes to it. I tried to copy the file elsewhere and then update. The file does not come with the update so I copy it back. Then I can't commit changes to it.</p>
<p>This is hard to explain what... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,715 | svn | # SVN commit fails: File already exists
I've got a file (mapViewController.m) which is in svn but I cannot commit changes to it. I tried to copy the file elsewhere and then update. The file does not come with the update so I copy it back. Then I can't commit changes to it.
This is hard to explain what is wrong... bec... | The rule of thumb for all SVN problems is for when you can't figure something out, checkout a fresh copy to a new directory(if possible)
Try doing a fresh checkout and then replacing the file and then committing.
Also, make sure that you don't have to lock that file first.
It sounds a bit like you forgot to do `svn ... |
757831 | Commits and merges on SVN subdirectories considered harmful? | 12 | 2009-04-16 20:05:05 | <p>We have several large subprojects inside our main SVN project root.<br>
I commit and merge only my subproject when working with our release branches, mainly because it's faster.</p>
<p>However, a colleague pointed out this <a href="http://svnbook.red-bean.com/en/1.5/svn.branchmerge.advanced.html" rel="nofollow nore... | 5,619 | 44,390 | 2012-10-11 05:47:11 | 757,927 | 15 | 2009-04-16 20:33:46 | 4,596 | 2009-04-16 20:40:17 | https://stackoverflow.com/q/757831 | https://stackoverflow.com/a/757927 | <p>One possible explanation is that you could forget parts of a change set.</p>
<p>If the change sets that you are merging cover files that are outside the subdirectory that you have checked out, then there is always the possibility that you will forget to merge those files. </p>
<p>For example, if you have a commit ... | <p>One possible explanation is that you could forget parts of a change set.</p> <p>If the change sets that you are merging cover files that are outside the subdirectory that you have checked out, then there is always the possibility that you will forget to merge those files. </p> <p>For example, if you have a commit ... | 63, 656, 717, 13377 | merge, svn, svn-merge, tortoisesvn | <h1>Commits and merges on SVN subdirectories considered harmful?</h1>
<p>We have several large subprojects inside our main SVN project root.<br>
I commit and merge only my subproject when working with our release branches, mainly because it's faster.</p>
<p>However, a colleague pointed out this <a href="http://svnbook... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,716 | svn | # Commits and merges on SVN subdirectories considered harmful?
We have several large subprojects inside our main SVN project root.
I commit and merge only my subproject when working with our release branches, mainly because it's faster.
However, a colleague pointed out this [reference to merging subdirectories in *... | One possible explanation is that you could forget parts of a change set.
If the change sets that you are merging cover files that are outside the subdirectory that you have checked out, then there is always the possibility that you will forget to merge those files.
For example, if you have a commit like this on trunk... |
633353 | Change the timestamp of an SVN revision | 12 | 2009-03-11 04:40:53 | <p>We had a power failure that exhausted our UPS and subsequently shutdown our SVN machine. When it booted back up it, the system time was incorrect.</p>
<p>Unfortunately, this was not caught until some people had already committed a changes. So now we have a few revisions that predate the first revision by several ye... | 15,196 | 1,200,558 | 2020-04-08 15:20:37 | 633,395 | 15 | 2009-03-11 04:59:18 | 16,780 | 2009-03-11 04:59:18 | https://stackoverflow.com/q/633353 | https://stackoverflow.com/a/633395 | <p>The date/time is a property of the revision. Figure out the revision number (or use HEAD), and modify it with propset or propedit and --revprop.</p>
<pre><code>svn propset svn:date 'YYYY-MM-DDTHH:MM:SS.MMMMMMZ' --revprop -r HEAD /path/to/wc/file
</code></pre>
<p>You'll have to play around with it to get the right ... | <p>The date/time is a property of the revision. Figure out the revision number (or use HEAD), and modify it with propset or propedit and --revprop.</p> <pre><code>svn propset svn:date 'YYYY-MM-DDTHH:MM:SS.MMMMMMZ' --revprop -r HEAD /path/to/wc/file </code></pre> <p>You'll have to play around with it to get the right ... | 63, 456 | svn, version-control | <h1>Change the timestamp of an SVN revision</h1>
<p>We had a power failure that exhausted our UPS and subsequently shutdown our SVN machine. When it booted back up it, the system time was incorrect.</p>
<p>Unfortunately, this was not caught until some people had already committed a changes. So now we have a few revisi... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,717 | svn | # Change the timestamp of an SVN revision
We had a power failure that exhausted our UPS and subsequently shutdown our SVN machine. When it booted back up it, the system time was incorrect.
Unfortunately, this was not caught until some people had already committed a changes. So now we have a few revisions that predate... | The date/time is a property of the revision. Figure out the revision number (or use HEAD), and modify it with propset or propedit and --revprop.
```
svn propset svn:date 'YYYY-MM-DDTHH:MM:SS.MMMMMMZ' --revprop -r HEAD /path/to/wc/file
```
You'll have to play around with it to get the right combination of settings. Yo... |
13192699 | SVN Patch - with multiple files | 11 | 2012-11-02 09:39:20 | <p>I am trying to make a patch with multiple files in different directories. I don't want to include all my uncommitted files as I have a lot not applicable to the patch.</p>
<p>I know of this command to create a patch with a specific file, only issue is this is one file:</p>
<pre><code>svn diff -up original.php >... | 8,650 | 1,459,132 | 2012-11-02 11:47:59 | 13,193,266 | 15 | 2012-11-02 10:16:40 | 1,617,405 | 2012-11-02 10:26:13 | https://stackoverflow.com/q/13192699 | https://stackoverflow.com/a/13193266 | <p>You can try used: <code>svn diff -r BEGIN_REVISION:END_REVISION > patch_file.patch</code>
This will make the patch on all modified files.</p>
<p>If you want create patch for concrete files, you can enumerate them before <code>></code>.</p>
<p><code>svn diff dir_name_1/first.php dir_name_2/second.php > pat... | <p>You can try used: <code>svn diff -r BEGIN_REVISION:END_REVISION > patch_file.patch</code> This will make the patch on all modified files.</p> <p>If you want create patch for concrete files, you can enumerate them before <code>></code>.</p> <p><code>svn diff dir_name_1/first.php dir_name_2/second.php > pat... | 63, 606, 1231, 2132 | command-line, diff, patch, svn | <h1>SVN Patch - with multiple files</h1>
<p>I am trying to make a patch with multiple files in different directories. I don't want to include all my uncommitted files as I have a lot not applicable to the patch.</p>
<p>I know of this command to create a patch with a specific file, only issue is this is one file:</p>
... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,718 | svn | # SVN Patch - with multiple files
I am trying to make a patch with multiple files in different directories. I don't want to include all my uncommitted files as I have a lot not applicable to the patch.
I know of this command to create a patch with a specific file, only issue is this is one file:
```
svn diff -up ori... | You can try used: `svn diff -r BEGIN_REVISION:END_REVISION > patch_file.patch`
This will make the patch on all modified files.
If you want create patch for concrete files, you can enumerate them before `>`.
`svn diff dir_name_1/first.php dir_name_2/second.php > patch_file.patch`
For one directory:
`svn diff -uRp dir... |
4499581 | SVN: How to resolve evil twins tree conflict by accepting incoming add (removing local add) | 11 | 2010-12-21 13:11:25 | <p>In SVN I have a tree conflict upon merging two branches. The tree conflict arises because I have added a the same file or the same directory in both branches. Much the same question is asked here:</p>
<p><a href="https://stackoverflow.com/questions/767763/svn-how-to-resolve-new-tree-conflicts-when-file-is-added-on... | 4,215 | 197,141 | 2011-07-17 23:09:46 | 6,727,390 | 15 | 2011-07-17 23:09:46 | 371,234 | 2011-07-17 23:09:46 | https://stackoverflow.com/q/4499581 | https://stackoverflow.com/a/6727390 | <p>I would resolve the add-add conflict manually like so:</p>
<pre><code>svn rm twin
svn cp ^/branches/B1/twin .
svn resolve --accept working twin
</code></pre>
<p>The result is a nice clean history, showing <code>B2/twin</code> replaced by a copy of <code>B1/twin</code>.</p>
| <p>I would resolve the add-add conflict manually like so:</p> <pre><code>svn rm twin svn cp ^/branches/B1/twin . svn resolve --accept working twin </code></pre> <p>The result is a nice clean history, showing <code>B2/twin</code> replaced by a copy of <code>B1/twin</code>.</p> | 63, 717, 28636 | merge, svn, tree-conflict | <h1>SVN: How to resolve evil twins tree conflict by accepting incoming add (removing local add)</h1>
<p>In SVN I have a tree conflict upon merging two branches. The tree conflict arises because I have added a the same file or the same directory in both branches. Much the same question is asked here:</p>
<p><a href="h... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,719 | svn | # SVN: How to resolve evil twins tree conflict by accepting incoming add (removing local add)
In SVN I have a tree conflict upon merging two branches. The tree conflict arises because I have added a the same file or the same directory in both branches. Much the same question is asked here:
[Other Stackoverflow Questi... | I would resolve the add-add conflict manually like so:
```
svn rm twin
svn cp ^/branches/B1/twin .
svn resolve --accept working twin
```
The result is a nice clean history, showing `B2/twin` replaced by a copy of `B1/twin`. |
13887645 | SVN Repository Authentication with SharpSVN - Credentials not working | 10 | 2012-12-14 23:24:16 | <p>I have the following code in C#:</p>
<pre><code>1. public static void Main(string[] args) {
2. Uri repository = new Uri("https://svnserver:port/svn/Src/trunk");
3. using (SvnClient client = new SvnClient()) {
4. client.Authentication.Clear();
5. client.Authentication.DefaultCredentials = ne... | 6,392 | 1,250,177 | 2013-09-06 20:25:48 | 13,888,296 | 15 | 2012-12-15 00:57:00 | 1,250,177 | 2012-12-15 00:57:00 | https://stackoverflow.com/q/13887645 | https://stackoverflow.com/a/13888296 | <p>I found the answer... add this after line 5:</p>
<pre><code>client.Authentication.SslServerTrustHandlers += delegate(object sender, SvnSslServerTrustEventArgs e) {
e.AcceptedFailures = e.Failures;
e.Save = true; // Save acceptance to authentication store
};
</... | <p>I found the answer... add this after line 5:</p> <pre><code>client.Authentication.SslServerTrustHandlers += delegate(object sender, SvnSslServerTrustEventArgs e) { e.AcceptedFailures = e.Failures; e.Save = true; // Save acceptance to authentication store }; </... | 9, 16557 | c#, sharpsvn | <h1>SVN Repository Authentication with SharpSVN - Credentials not working</h1>
<p>I have the following code in C#:</p>
<pre><code>1. public static void Main(string[] args) {
2. Uri repository = new Uri("https://svnserver:port/svn/Src/trunk");
3. using (SvnClient client = new SvnClient()) {
4. cli... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,720 | svn | # SVN Repository Authentication with SharpSVN - Credentials not working
I have the following code in C#:
```
1. public static void Main(string[] args) {
2. Uri repository = new Uri("https://svnserver:port/svn/Src/trunk");
3. using (SvnClient client = new SvnClient()) {
4. client.Authentication.C... | I found the answer... add this after line 5:
```
client.Authentication.SslServerTrustHandlers += delegate(object sender, SvnSslServerTrustEventArgs e) {
e.AcceptedFailures = e.Failures;
e.Save = true; // Save acceptance to authentication store
};
``` |
4043346 | svn diff: Compare my local uncommited changes with an arbitrary version of the file from the repository | 10 | 2010-10-28 13:27:08 | <p>Let's say I've checked out revision 10 of hello.c which is the latest one in the repository. I've made some changes to hello.c locally in my workspace, but I haven't committed it yet. Now, how can I compare this local uncommitted changes made on top of revision 10 with, say, revision 7 of hello.c in the repository?<... | 9,399 | 7,205 | 2020-08-02 10:54:41 | 4,043,411 | 15 | 2010-10-28 13:35:35 | 244,297 | 2016-05-13 10:52:14 | https://stackoverflow.com/q/4043346 | https://stackoverflow.com/a/4043411 | <p>To see how your working copy's modifications to the file <code>hello.c</code> compare against revision 7 use:</p>
<pre><code>svn diff -r 7 hello.c
</code></pre>
| <p>To see how your working copy's modifications to the file <code>hello.c</code> compare against revision 7 use:</p> <pre><code>svn diff -r 7 hello.c </code></pre> | 63, 606 | diff, svn | <h1>svn diff: Compare my local uncommited changes with an arbitrary version of the file from the repository</h1>
<p>Let's say I've checked out revision 10 of hello.c which is the latest one in the repository. I've made some changes to hello.c locally in my workspace, but I haven't committed it yet. Now, how can I compa... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,721 | svn | # svn diff: Compare my local uncommited changes with an arbitrary version of the file from the repository
Let's say I've checked out revision 10 of hello.c which is the latest one in the repository. I've made some changes to hello.c locally in my workspace, but I haven't committed it yet. Now, how can I compare this l... | To see how your working copy's modifications to the file `hello.c` compare against revision 7 use:
```
svn diff -r 7 hello.c
``` |
4117619 | How to change help language in SVN on Windows? | 9 | 2010-11-07 12:06:17 | <p>How to change the language of commands' documentation under <strong>Windows</strong>, printed by following command:
svn help checkout</p>
| 2,611 | 239,129 | 2014-09-10 13:51:47 | 4,117,657 | 15 | 2010-11-07 12:16:06 | 162,407 | 2010-11-07 12:16:06 | https://stackoverflow.com/q/4117619 | https://stackoverflow.com/a/4117657 | <p>Use the <code>LANG</code> environment variable</p>
<pre><code>set LANG=en_US
</code></pre>
| <p>Use the <code>LANG</code> environment variable</p> <pre><code>set LANG=en_US </code></pre> | 63, 64, 1921 | locale, svn, windows | <h1>How to change help language in SVN on Windows?</h1>
<p>How to change the language of commands' documentation under <strong>Windows</strong>, printed by following command:
svn help checkout</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,723 | svn | # How to change help language in SVN on Windows?
How to change the language of commands' documentation under **Windows**, printed by following command:
svn help checkout | Use the `LANG` environment variable
```
set LANG=en_US
``` |
2855712 | SVN tags: How not to update/checkout them? | 9 | 2010-05-18 08:49:10 | <p>In many projects, I check out the complete repository and have then the standard directory structure:</p>
<pre><code>project/
branches/
tags/
trunk/
</code></pre>
<p>If I do an <code>svn up project</code>, it's all fine with the <code>branches</code> and <code>trunk</code> folders, but, of course, the ... | 9,447 | 113,195 | 2010-05-18 10:00:42 | 2,855,765 | 15 | 2010-05-18 08:56:27 | 78,712 | 2010-05-18 08:56:27 | https://stackoverflow.com/q/2855712 | https://stackoverflow.com/a/2855765 | <p>First you check out the top of the project in non recursive way (-N or --non-recursive)</p>
<pre><code>svn co https://server/project -N my_project_checkout
</code></pre>
<p>Now at this stage you can update only the trunk:</p>
<pre><code>svn up my_project_checkout/trunk
</code></pre>
| <p>First you check out the top of the project in non recursive way (-N or --non-recursive)</p> <pre><code>svn co https://server/project -N my_project_checkout </code></pre> <p>Now at this stage you can update only the trunk:</p> <pre><code>svn up my_project_checkout/trunk </code></pre> | 63, 115 | svn, tags | <h1>SVN tags: How not to update/checkout them?</h1>
<p>In many projects, I check out the complete repository and have then the standard directory structure:</p>
<pre><code>project/
branches/
tags/
trunk/
</code></pre>
<p>If I do an <code>svn up project</code>, it's all fine with the <code>branches</code> ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,724 | svn | # SVN tags: How not to update/checkout them?
In many projects, I check out the complete repository and have then the standard directory structure:
```
project/
branches/
tags/
trunk/
```
If I do an `svn up project`, it's all fine with the `branches` and `trunk` folders, but, of course, the `tags` folder ... | First you check out the top of the project in non recursive way (-N or --non-recursive)
```
svn co https://server/project -N my_project_checkout
```
Now at this stage you can update only the trunk:
```
svn up my_project_checkout/trunk
``` |
2645046 | subversion get latest without updating svn:externals | 9 | 2010-04-15 12:12:21 | <p>svn is slow as it is ( leaving the rant out)
the last thing I think is necesary is to do a request ofr externals is you got latest 5 min ago<br>
any way to get latest without/skipping externals
Cheers</p>
| 1,689 | 162,325 | 2010-04-15 12:18:45 | 2,645,081 | 15 | 2010-04-15 12:18:45 | 96,194 | 2010-04-15 12:18:45 | https://stackoverflow.com/q/2645046 | https://stackoverflow.com/a/2645081 | <p><code>svn up --ignore-externals</code></p>
<p>Skips externals, works on the checkout too.</p>
| <p><code>svn up --ignore-externals</code></p> <p>Skips externals, works on the checkout too.</p> | 63 | svn | <h1>subversion get latest without updating svn:externals</h1>
<p>svn is slow as it is ( leaving the rant out)
the last thing I think is necesary is to do a request ofr externals is you got latest 5 min ago<br>
any way to get latest without/skipping externals
Cheers</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,725 | svn | # subversion get latest without updating svn:externals
svn is slow as it is ( leaving the rant out)
the last thing I think is necesary is to do a request ofr externals is you got latest 5 min ago
any way to get latest without/skipping externals
Cheers | `svn up --ignore-externals`
Skips externals, works on the checkout too. |
2224614 | TortoiseSVN - "you have to update your working copy first" | 9 | 2010-02-08 20:25:39 | <p>When I trying to commit I get this error. What that was done, I think is a rename of the folder. I tried already rename / move the folder. But I continue to get the error.</p>
<blockquote>
<pre><code>Command: Commit
Error: Commit failed (details follow):
Error: File 'Page.aspx' is out of date
Error: File not ... | 36,972 | 257,670 | 2016-05-28 12:16:00 | 2,224,643 | 15 | 2010-02-08 20:30:30 | 17,028 | 2010-02-08 20:30:30 | https://stackoverflow.com/q/2224614 | https://stackoverflow.com/a/2224643 | <p>SVN knows that there was a change in the repository, but it does not know what that changes was. You might have made exactly the same change on your working copy, but unless you actually try to do update so that SVN can run the resolve, it won't check that your local change is the same as the repo change.</p>
<p>Do... | <p>SVN knows that there was a change in the repository, but it does not know what that changes was. You might have made exactly the same change on your working copy, but unless you actually try to do update so that SVN can run the resolve, it won't check that your local change is the same as the repo change.</p> <p>Do... | 656 | tortoisesvn | <h1>TortoiseSVN - "you have to update your working copy first"</h1>
<p>When I trying to commit I get this error. What that was done, I think is a rename of the folder. I tried already rename / move the folder. But I continue to get the error.</p>
<blockquote>
<pre><code>Command: Commit
Error: Commit failed (details ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,726 | svn | # TortoiseSVN - "you have to update your working copy first"
When I trying to commit I get this error. What that was done, I think is a rename of the folder. I tried already rename / move the folder. But I continue to get the error.
> ```
> Command: Commit
> Error: Commit failed (details follow):
> Error: File 'P... | SVN knows that there was a change in the repository, but it does not know what that changes was. You might have made exactly the same change on your working copy, but unless you actually try to do update so that SVN can run the resolve, it won't check that your local change is the same as the repo change.
Do an `svn u... |
12188314 | SVN info from ASP.NET : 'Can't determine the user's config path' | 8 | 2012-08-30 00:26:10 | <p>Got an ASP.NET site which I wish to perform an SVN info call from. </p>
<p>My understanding is this error message appears when a user hasn't yet done their basic setup to use SVN. Specifically there is a folder a few steps under AppData named Subversion which when not present and properly configured, shows the af... | 4,077 | 287,545 | 2012-10-02 00:51:56 | 12,683,140 | 15 | 2012-10-02 00:51:56 | 640,205 | 2012-10-02 00:51:56 | https://stackoverflow.com/q/12188314 | https://stackoverflow.com/a/12683140 | <p>add this line before you authenticate and or perform any svn event.</p>
<pre><code>client.LoadConfiguration(Path.Combine(Path.GetTempPath(), "Svn"), true);
</code></pre>
| <p>add this line before you authenticate and or perform any svn event.</p> <pre><code>client.LoadConfiguration(Path.Combine(Path.GetTempPath(), "Svn"), true); </code></pre> | 63, 96, 23041 | appdata, asp.net, svn | <h1>SVN info from ASP.NET : 'Can't determine the user's config path'</h1>
<p>Got an ASP.NET site which I wish to perform an SVN info call from. </p>
<p>My understanding is this error message appears when a user hasn't yet done their basic setup to use SVN. Specifically there is a folder a few steps under AppData nam... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,728 | svn | # SVN info from ASP.NET : 'Can't determine the user's config path'
Got an ASP.NET site which I wish to perform an SVN info call from.
My understanding is this error message appears when a user hasn't yet done their basic setup to use SVN. Specifically there is a folder a few steps under AppData named Subversion which... | add this line before you authenticate and or perform any svn event.
```
client.LoadConfiguration(Path.Combine(Path.GetTempPath(), "Svn"), true);
``` |
6878673 | svn (subversion) ignore specific file types in all sub-directories, configured on root? | 8 | 2011-07-29 20:29:44 | <p>I have the following folder structure, and I would like for svn to ignore all eclipse files (<em><code>.classpath</code></em> and <em><code>.project</code></em> and <em><code>.settings</code></em>) in sub-projects</p>
<pre><code>main-project/
sub-1/.classpath
sub-2/.classpath
sub-3/part1/.classpath
sub-3/pa... | 12,479 | 688,266 | 2016-08-16 04:54:02 | 6,900,700 | 15 | 2011-08-01 15:26:06 | 688,266 | 2016-08-16 04:54:02 | https://stackoverflow.com/q/6878673 | https://stackoverflow.com/a/6900700 | <p>I believe the answer I was looking for is:</p>
<pre><code>vim ~/.subversion/config
</code></pre>
<p>scroll down to 'global-ignores':</p>
<pre><code>global-ignores = *.classpath
</code></pre>
<p>The answer came from here:</p>
<p><a href="https://stackoverflow.com/questions/1594933/how-can-i-recursively-configure... | <p>I believe the answer I was looking for is:</p> <pre><code>vim ~/.subversion/config </code></pre> <p>scroll down to 'global-ignores':</p> <pre><code>global-ignores = *.classpath </code></pre> <p>The answer came from here:</p> <p><a href="https://stackoverflow.com/questions/1594933/how-can-i-recursively-configure... | 63 | svn | <h1>svn (subversion) ignore specific file types in all sub-directories, configured on root?</h1>
<p>I have the following folder structure, and I would like for svn to ignore all eclipse files (<em><code>.classpath</code></em> and <em><code>.project</code></em> and <em><code>.settings</code></em>) in sub-projects</p>
<... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,729 | svn | # svn (subversion) ignore specific file types in all sub-directories, configured on root?
I have the following folder structure, and I would like for svn to ignore all eclipse files (*`.classpath`* and *`.project`* and *`.settings`*) in sub-projects
```
main-project/
sub-1/.classpath
sub-2/.classpath
sub-3/part... | I believe the answer I was looking for is:
```
vim ~/.subversion/config
```
scroll down to 'global-ignores':
```
global-ignores = *.classpath
```
The answer came from here:
[How can I recursively configure svn status to hide ignored files?](https://stackoverflow.com/questions/1594933/how-can-i-recursively-configur... |
3807651 | svn: reverting to previous version | 8 | 2010-09-27 20:38:11 | <p>I mistakenly committed the wrong change to file, for a simplified example's sake let's call it foo.txt:</p>
<p>foo.txt, rev 300 (correct):</p>
<pre><code> E = mc^2
</code></pre>
<p>foo.txt, rev 301 (incorrect):</p>
<pre><code> E = mc^3
</code></pre>
<p>How do I re-commit rev 300 to the next commit? If I update ... | 28,020 | 44,330 | 2013-12-12 12:44:38 | 3,807,734 | 15 | 2010-09-27 20:48:47 | 140,740 | 2010-09-27 20:48:47 | https://stackoverflow.com/q/3807651 | https://stackoverflow.com/a/3807734 | <pre><code>svn merge -r301:300 foo.txt
svn commit -m 'revert foo.txt to 300'
</code></pre>
| <pre><code>svn merge -r301:300 foo.txt svn commit -m 'revert foo.txt to 300' </code></pre> | 63 | svn | <h1>svn: reverting to previous version</h1>
<p>I mistakenly committed the wrong change to file, for a simplified example's sake let's call it foo.txt:</p>
<p>foo.txt, rev 300 (correct):</p>
<pre><code> E = mc^2
</code></pre>
<p>foo.txt, rev 301 (incorrect):</p>
<pre><code> E = mc^3
</code></pre>
<p>How do I re-com... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,730 | svn | # svn: reverting to previous version
I mistakenly committed the wrong change to file, for a simplified example's sake let's call it foo.txt:
foo.txt, rev 300 (correct):
```
E = mc^2
```
foo.txt, rev 301 (incorrect):
```
E = mc^3
```
How do I re-commit rev 300 to the next commit? If I update foo.txt to rev 300, ... | ```
svn merge -r301:300 foo.txt
svn commit -m 'revert foo.txt to 300'
``` |
27539179 | How to fix Tree conflict issue in SVN | 7 | 2014-12-18 04:19:04 | <p>I am new to SVN. </p>
<p>I found a conflict message as shown below:</p>
<pre><code>rahulv@SWS306:~/sp/s2$ svn status
M Gemfile
M Gemfile.lock
M config/intializers/secret_token.rb
D C tmp
> local dir unversioned, incoming dir add upon update
D tmp/cache
? tmp/data
D ... | 18,326 | 3,185,510 | 2016-01-27 05:16:14 | 30,325,981 | 15 | 2015-05-19 12:43:04 | 1,717,300 | 2016-01-27 05:16:14 | https://stackoverflow.com/q/27539179 | https://stackoverflow.com/a/30325981 | <p>I had this issue today, and because I didn't want keep the current contents of the new versioned directory, simple solution was:</p>
<pre><code>svn status # review current situation
svn revert tmp # fix, replace tmp with right path for you
svn status # verify there are no conflicts any more
</code></pre>... | <p>I had this issue today, and because I didn't want keep the current contents of the new versioned directory, simple solution was:</p> <pre><code>svn status # review current situation svn revert tmp # fix, replace tmp with right path for you svn status # verify there are no conflicts any more </code></pre>... | 63 | svn | <h1>How to fix Tree conflict issue in SVN</h1>
<p>I am new to SVN. </p>
<p>I found a conflict message as shown below:</p>
<pre><code>rahulv@SWS306:~/sp/s2$ svn status
M Gemfile
M Gemfile.lock
M config/intializers/secret_token.rb
D C tmp
> local dir unversioned, incoming dir add upon u... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,732 | svn | # How to fix Tree conflict issue in SVN
I am new to SVN.
I found a conflict message as shown below:
```
rahulv@SWS306:~/sp/s2$ svn status
M Gemfile
M Gemfile.lock
M config/intializers/secret_token.rb
D C tmp
> local dir unversioned, incoming dir add upon update
D tmp/cache
? ... | I had this issue today, and because I didn't want keep the current contents of the new versioned directory, simple solution was:
```
svn status # review current situation
svn revert tmp # fix, replace tmp with right path for you
svn status # verify there are no conflicts any more
```
Of course, if there's ... |
6347690 | commiting only deleted files to subversion | 7 | 2011-06-14 17:40:35 | <p>Say I have a large working directory and I am in the process of cleaning out sections of code that are no longer used. Part of this process is flat out <code>svn delete</code>ing a lot of files. But what if I want to make sure those files are not being used anywhere anymore... if I do <code>svn commit</code> it wi... | 20,289 | 402,796 | 2012-08-15 15:28:16 | 6,350,912 | 15 | 2011-06-14 22:27:46 | 85,950 | 2011-06-14 22:27:46 | https://stackoverflow.com/q/6347690 | https://stackoverflow.com/a/6350912 | <p>Cannot reproduce.</p>
<p><code>svn commit <list of svn delete'd files></code> works fine.</p>
<p>You will get <code>svn: <file> is not under version control</code> error if you try to commit changes to a file that has already been <code>svn delete'd</code> <strong><em>and committed</em></strong>. Is t... | <p>Cannot reproduce.</p> <p><code>svn commit <list of svn delete'd files></code> works fine.</p> <p>You will get <code>svn: <file> is not under version control</code> error if you try to commit changes to a file that has already been <code>svn delete'd</code> <strong><em>and committed</em></strong>. Is t... | 63 | svn | <h1>commiting only deleted files to subversion</h1>
<p>Say I have a large working directory and I am in the process of cleaning out sections of code that are no longer used. Part of this process is flat out <code>svn delete</code>ing a lot of files. But what if I want to make sure those files are not being used anywh... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,734 | svn | # commiting only deleted files to subversion
Say I have a large working directory and I am in the process of cleaning out sections of code that are no longer used. Part of this process is flat out `svn delete`ing a lot of files. But what if I want to make sure those files are not being used anywhere anymore... if I do... | Cannot reproduce.
`svn commit <list of svn delete'd files>` works fine.
You will get `svn: <file> is not under version control` error if you try to commit changes to a file that has already been `svn delete'd` ***and committed***. Is there an errant file in your list? |
13585631 | IntelliJ won't save SVN authentication information | 6 | 2012-11-27 13:46:26 | <p>I'm using IntelliJ Ultimate version 11.1.4 on OS X.</p>
<p>Every time the application starts, or I update from SVN, I am prompted for my SVN credentials. Even if I click "save credentials" they are not stored.</p>
<p><a href="http://youtrack.jetbrains.com/issue/IDEA-55531" rel="noreferrer">This ticket</a> describe... | 4,998 | 228,371 | 2012-11-27 16:22:02 | 13,588,544 | 15 | 2012-11-27 16:22:02 | 104,891 | 2012-11-27 16:22:02 | https://stackoverflow.com/q/13585631 | https://stackoverflow.com/a/13588544 | <p>This problem can occur if there are any modifications in the <code>/Applications/<app>.app</code> directory. It's new since Mac OS 10.8 as the application is now signed and OS checks the signature when running.</p>
<p>If the signature doesn't match because of some change in the files (like after installing pa... | <p>This problem can occur if there are any modifications in the <code>/Applications/<app>.app</code> directory. It's new since Mac OS 10.8 as the application is now signed and OS checks the signature when running.</p> <p>If the signature doesn't match because of some change in the files (like after installing pa... | 63, 110, 5357, 8945 | credentials, ide, intellij-idea, svn | <h1>IntelliJ won't save SVN authentication information</h1>
<p>I'm using IntelliJ Ultimate version 11.1.4 on OS X.</p>
<p>Every time the application starts, or I update from SVN, I am prompted for my SVN credentials. Even if I click "save credentials" they are not stored.</p>
<p><a href="http://youtrack.jetbrains.com... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,735 | svn | # IntelliJ won't save SVN authentication information
I'm using IntelliJ Ultimate version 11.1.4 on OS X.
Every time the application starts, or I update from SVN, I am prompted for my SVN credentials. Even if I click "save credentials" they are not stored.
[This ticket](http://youtrack.jetbrains.com/issue/IDEA-55531)... | This problem can occur if there are any modifications in the `/Applications/<app>.app` directory. It's new since Mac OS 10.8 as the application is now signed and OS checks the signature when running.
If the signature doesn't match because of some change in the files (like after installing patch update or adjusting opt... |
2020490 | Limit size of Subversion repository | 6 | 2010-01-07 13:14:55 | <p>Hi I'd like to limit the size of my repository by specifying a maximum size, however I cannot find any information on doing so. Is this technically possible? </p>
<p>edit: sorry if I wasn't clear. I want to keep a functional repository where I can keep committing patches, however the oldest revisions of documents ... | 7,789 | 997 | 2012-08-15 13:03:14 | 2,021,082 | 15 | 2010-01-07 14:52:12 | 7,298 | 2011-06-27 16:38:29 | https://stackoverflow.com/q/2020490 | https://stackoverflow.com/a/2021082 | <p>Doing this is major surgery on your repository. Make sure you're fully aware of what you're doing before doing this for real on a real repository.</p>
<p>You won't be able to do what you're after for individual files, but you can do this across the whole repository. What you need to do is cut off the history tail f... | <p>Doing this is major surgery on your repository. Make sure you're fully aware of what you're doing before doing this for real on a real repository.</p> <p>You won't be able to do what you're after for individual files, but you can do this across the whole repository. What you need to do is cut off the history tail f... | 63 | svn | <h1>Limit size of Subversion repository</h1>
<p>Hi I'd like to limit the size of my repository by specifying a maximum size, however I cannot find any information on doing so. Is this technically possible? </p>
<p>edit: sorry if I wasn't clear. I want to keep a functional repository where I can keep committing patche... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,736 | svn | # Limit size of Subversion repository
Hi I'd like to limit the size of my repository by specifying a maximum size, however I cannot find any information on doing so. Is this technically possible?
edit: sorry if I wasn't clear. I want to keep a functional repository where I can keep committing patches, however the old... | Doing this is major surgery on your repository. Make sure you're fully aware of what you're doing before doing this for real on a real repository.
You won't be able to do what you're after for individual files, but you can do this across the whole repository. What you need to do is cut off the history tail for the rep... |
15620547 | svn 1.7 error E200009 Could not add all targets because some targets are already versioned | 22 | 2013-03-25 16:59:04 | <p>I did a clean checkout of a repository then every day I have an hudson job that runs a script to backup the configuration. Part of the script is to add <code>*.xml</code></p>
<pre><code>$ svn add *.xml
svn: warning: W150002: '/data/hudson/config.xml' is already under version control
svn: E200009: Could not add all ... | 66,459 | 359,476 | 2020-11-07 13:32:59 | 15,635,711 | 14 | 2013-03-26 11:17:18 | 359,476 | 2013-03-26 11:17:18 | https://stackoverflow.com/q/15620547 | https://stackoverflow.com/a/15635711 | <p>Seems like the correct behaviour for SVN 1.7. An alternative is to add only unversioned files:</p>
<pre><code>svn st *.xml | grep ? | tr -s ' ' | cut -d ' ' -f 2 | xargs svn add
</code></pre>
<p>However it's possible you have nothing to add, so you will get </p>
<pre><code>svn: E205001: Try 'svn help' for more in... | <p>Seems like the correct behaviour for SVN 1.7. An alternative is to add only unversioned files:</p> <pre><code>svn st *.xml | grep ? | tr -s ' ' | cut -d ' ' -f 2 | xargs svn add </code></pre> <p>However it's possible you have nothing to add, so you will get </p> <pre><code>svn: E205001: Try 'svn help' for more in... | 63 | svn | <h1>svn 1.7 error E200009 Could not add all targets because some targets are already versioned</h1>
<p>I did a clean checkout of a repository then every day I have an hudson job that runs a script to backup the configuration. Part of the script is to add <code>*.xml</code></p>
<pre><code>$ svn add *.xml
svn: warning: ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,739 | svn | # svn 1.7 error E200009 Could not add all targets because some targets are already versioned
I did a clean checkout of a repository then every day I have an hudson job that runs a script to backup the configuration. Part of the script is to add `*.xml`
```
$ svn add *.xml
svn: warning: W150002: '/data/hudson/config.x... | Seems like the correct behaviour for SVN 1.7. An alternative is to add only unversioned files:
```
svn st *.xml | grep ? | tr -s ' ' | cut -d ' ' -f 2 | xargs svn add
```
However it's possible you have nothing to add, so you will get
```
svn: E205001: Try 'svn help' for more info
svn: E205001: Not enough arguments p... |
110175 | How to access the current Subversion build number? | 22 | 2008-09-21 03:34:56 | <p>How can you automatically import the latest build/revision number in subversion?</p>
<p>The goal would be to have that number visible on your webpage footer like SO does.</p>
| 32,998 | 1,368 | 2017-06-22 13:03:43 | 110,185 | 14 | 2008-09-21 03:40:20 | 91 | 2008-09-21 04:17:54 | https://stackoverflow.com/q/110175 | https://stackoverflow.com/a/110185 | <pre><code>svn info <Repository-URL>
</code></pre>
<p>or</p>
<pre><code>svn info --xml <Repository-URL>
</code></pre>
<p>Then look at the result. For xml, parse /info/entry/@revision for the revision of the repository (151 in this example) or /info/entry/commit/@revision for the revision of the last comm... | <pre><code>svn info <Repository-URL> </code></pre> <p>or</p> <pre><code>svn info --xml <Repository-URL> </code></pre> <p>Then look at the result. For xml, parse /info/entry/@revision for the revision of the repository (151 in this example) or /info/entry/commit/@revision for the revision of the last comm... | 63 | svn | <h1>How to access the current Subversion build number?</h1>
<p>How can you automatically import the latest build/revision number in subversion?</p>
<p>The goal would be to have that number visible on your webpage footer like SO does.</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,740 | svn | # How to access the current Subversion build number?
How can you automatically import the latest build/revision number in subversion?
The goal would be to have that number visible on your webpage footer like SO does. | ```
svn info <Repository-URL>
```
or
```
svn info --xml <Repository-URL>
```
Then look at the result. For xml, parse /info/entry/@revision for the revision of the repository (151 in this example) or /info/entry/commit/@revision for the revision of the last commit against this path (133, useful when working with tags... |
711053 | Automatically add svn:needs-lock | 21 | 2009-04-02 18:39:34 | <p>Hi I was wondering if there is a way for the SVN server to automatically assign the svn:needs-lock property on any file that is binary and not textual. </p>
<p>We have a rather small developers team but resting on everyone to remember to set this property on newly created binary files doesn't make sense since it's ... | 41,958 | 56,242 | 2016-03-04 13:04:48 | 711,186 | 14 | 2009-04-02 19:14:29 | 48,003 | 2016-01-25 15:19:34 | https://stackoverflow.com/q/711053 | https://stackoverflow.com/a/711186 | <p>Edit the svn config file and add an entry for auto props or use <code>svn:auto-props</code> versioned property with SVN 1.8 and newer clients. <a href="http://svnbook.red-bean.com/en/1.8/svn.advanced.props.html#svn.advanced.props.auto" rel="nofollow noreferrer">Read SVNBook</a>!</p>
<p><strong>EDIT:</strong></p>
<... | <p>Edit the svn config file and add an entry for auto props or use <code>svn:auto-props</code> versioned property with SVN 1.8 and newer clients. <a href="http://svnbook.red-bean.com/en/1.8/svn.advanced.props.html#svn.advanced.props.auto" rel="nofollow noreferrer">Read SVNBook</a>!</p> <p><strong>EDIT:</strong></p> <... | 63, 68156 | svn, svn-propset | <h1>Automatically add svn:needs-lock</h1>
<p>Hi I was wondering if there is a way for the SVN server to automatically assign the svn:needs-lock property on any file that is binary and not textual. </p>
<p>We have a rather small developers team but resting on everyone to remember to set this property on newly created b... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,742 | svn | # Automatically add svn:needs-lock
Hi I was wondering if there is a way for the SVN server to automatically assign the svn:needs-lock property on any file that is binary and not textual.
We have a rather small developers team but resting on everyone to remember to set this property on newly created binary files doesn... | Edit the svn config file and add an entry for auto props or use `svn:auto-props` versioned property with SVN 1.8 and newer clients. [Read SVNBook](http://svnbook.red-bean.com/en/1.8/svn.advanced.props.html#svn.advanced.props.auto)!
**EDIT:**
From SVN 1.8 the you can apply the `svn:auto-props` property to the root pat... |
47022 | "Phantom" directories in an SVN repository | 21 | 2008-09-05 22:47:46 | <p>I've somehow managed to get an SVN repository into a bad state. I've moved a directory and now I can't commit it in its new location.</p>
<p>As far as <code>svn status</code> is concerned, the directory is unknown (the name of the directory is <code>type</code>).</p>
<pre>
$ svn status
? type
</pre>
<p>When ... | 12,041 | 1,412 | 2012-07-03 21:09:47 | 47,098 | 14 | 2008-09-05 23:45:49 | 1,867 | 2012-07-03 21:09:47 | https://stackoverflow.com/q/47022 | https://stackoverflow.com/a/47098 | <p>It looks to me like <code>type</code> was created by some Subversion-aware copy command, then moved into the current directory using a Subversion-unaware copy. In my experience, this sort of thing typically occurs when package refactoring operations have been chained together in Eclipse without commits in between. ... | <p>It looks to me like <code>type</code> was created by some Subversion-aware copy command, then moved into the current directory using a Subversion-unaware copy. In my experience, this sort of thing typically occurs when package refactoring operations have been chained together in Eclipse without commits in between. ... | 63 | svn | <h1>"Phantom" directories in an SVN repository</h1>
<p>I've somehow managed to get an SVN repository into a bad state. I've moved a directory and now I can't commit it in its new location.</p>
<p>As far as <code>svn status</code> is concerned, the directory is unknown (the name of the directory is <code>type</code>).<... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,743 | svn | # "Phantom" directories in an SVN repository
I've somehow managed to get an SVN repository into a bad state. I've moved a directory and now I can't commit it in its new location.
As far as `svn status` is concerned, the directory is unknown (the name of the directory is `type`).
```
$ svn status
? type
```
Whe... | It looks to me like `type` was created by some Subversion-aware copy command, then moved into the current directory using a Subversion-unaware copy. In my experience, this sort of thing typically occurs when package refactoring operations have been chained together in Eclipse without commits in between. Typically, Subv... |
569865 | How can I query my subversion repository? | 19 | 2009-02-20 15:05:10 | <p>Currently I would simply like to find all files that have not been modified in the last X days but ultimately I would like to be able to make more complex queries against my subversion repository.</p>
<p>Is there a Subversion Query Language of some sort or an API that I could use?</p>
| 17,833 | 5,056 | 2021-10-24 20:03:22 | 570,081 | 14 | 2009-02-20 15:50:12 | 52,626 | 2009-02-20 15:55:14 | https://stackoverflow.com/q/569865 | https://stackoverflow.com/a/570081 | <p>You can use <a href="http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.log.html" rel="noreferrer">svn log</a> command to produce an XML file with a lot of information about all commits like this:</p>
<pre><code>svn log URL --xml --verbose > commits.xml
</code></pre>
<p>There are some more options you can play wi... | <p>You can use <a href="http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.log.html" rel="noreferrer">svn log</a> command to produce an XML file with a lot of information about all commits like this:</p> <pre><code>svn log URL --xml --verbose > commits.xml </code></pre> <p>There are some more options you can play wi... | 63 | svn | <h1>How can I query my subversion repository?</h1>
<p>Currently I would simply like to find all files that have not been modified in the last X days but ultimately I would like to be able to make more complex queries against my subversion repository.</p>
<p>Is there a Subversion Query Language of some sort or an API t... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,744 | svn | # How can I query my subversion repository?
Currently I would simply like to find all files that have not been modified in the last X days but ultimately I would like to be able to make more complex queries against my subversion repository.
Is there a Subversion Query Language of some sort or an API that I could use? | You can use [svn log](http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.log.html) command to produce an XML file with a lot of information about all commits like this:
```
svn log URL --xml --verbose > commits.xml
```
There are some more options you can play with to limit the revision range, get more information on re... |
4542993 | When using source control, what files should actually be committed? | 18 | 2010-12-28 01:02:31 | <p>I am working on a small project, hosted on Google Code, using SVN for source control. This is my first time using source control, and I'm a bit confused about what I should actually be committing to the repository. My project is very simple: A Class Library project, written in C#. The actual code that I have written... | 15,811 | 221,061 | 2017-04-30 09:11:13 | 4,543,005 | 14 | 2010-12-28 01:04:58 | 34,211 | 2010-12-28 01:04:58 | https://stackoverflow.com/q/4542993 | https://stackoverflow.com/a/4543005 | <p>You should commit everything but your output files.</p>
<p>This means commit everything except for your <code>\bin</code> and <code>\obj</code> directories (and the files in them).</p>
| <p>You should commit everything but your output files.</p> <p>This means commit everything except for your <code>\bin</code> and <code>\obj</code> directories (and the files in them).</p> | 9, 63 | c#, svn | <h1>When using source control, what files should actually be committed?</h1>
<p>I am working on a small project, hosted on Google Code, using SVN for source control. This is my first time using source control, and I'm a bit confused about what I should actually be committing to the repository. My project is very simple... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,745 | svn | # When using source control, what files should actually be committed?
I am working on a small project, hosted on Google Code, using SVN for source control. This is my first time using source control, and I'm a bit confused about what I should actually be committing to the repository. My project is very simple: A Class... | You should commit everything but your output files.
This means commit everything except for your `\bin` and `\obj` directories (and the files in them). |
1189821 | Basic SVN Usage | 17 | 2009-07-27 18:30:56 | <h3>Preface</h3>
<p>Let me start off by saying that I'm a relatively new programmer and I have no prior experience with source control -- although after some reading, the concepts and general lingo are <em>not</em> alien to me.</p>
<hr />
<h3>Background</h3>
<p>I'm about to start my first professional project (I'll be ... | 1,147 | 145,929 | 2011-06-28 09:45:28 | 1,189,855 | 14 | 2009-07-27 18:38:22 | 64,767 | 2009-07-28 09:29:32 | https://stackoverflow.com/q/1189821 | https://stackoverflow.com/a/1189855 | <ol>
<li>Normally, packaged binaries are not kept in source control. If anything, use a separate repository for them. As a matter of fact, try to keep binaries away from your repository if at all possible. No compiled versions of your source code. (<em>see comments as well</em>)</li>
<li>Get <a href="http://tortoisesvn... | <ol> <li>Normally, packaged binaries are not kept in source control. If anything, use a separate repository for them. As a matter of fact, try to keep binaries away from your repository if at all possible. No compiled versions of your source code. (<em>see comments as well</em>)</li> <li>Get <a href="http://tortoisesvn... | 63, 456, 2018, 33953 | ankhsvn, svn, version-control, visual-studio | <h1>Basic SVN Usage</h1>
<h3>Preface</h3>
<p>Let me start off by saying that I'm a relatively new programmer and I have no prior experience with source control -- although after some reading, the concepts and general lingo are <em>not</em> alien to me.</p>
<hr />
<h3>Background</h3>
<p>I'm about to start my first profe... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,746 | svn | # Basic SVN Usage
### Preface
Let me start off by saying that I'm a relatively new programmer and I have no prior experience with source control -- although after some reading, the concepts and general lingo are *not* alien to me.
---
### Background
I'm about to start my first professional project (I'll be the onl... | 1. Normally, packaged binaries are not kept in source control. If anything, use a separate repository for them. As a matter of fact, try to keep binaries away from your repository if at all possible. No compiled versions of your source code. (*see comments as well*)
2. Get [TortoiseSVN](http://tortoisesvn.tigris.org/) ... |
971188 | Subversion: Check out only those files affected during a specific commit | 17 | 2009-06-09 16:39:07 | <p>In Subversion, is it possible to check out <strong>only</strong> those files affected during a specific commit, provided you know the specific revision number?</p>
| 14,782 | 41,619 | 2017-11-10 20:32:21 | 971,225 | 14 | 2009-06-09 16:46:44 | 63,034 | 2009-06-09 16:46:44 | https://stackoverflow.com/q/971188 | https://stackoverflow.com/a/971225 | <p>I think that a Subversion check out can only check out a specific folder and not individual files. That said, the command:</p>
<pre><code>svn log -r *revision* -q -v
</code></pre>
<p>will list the changes associated with the specified revision so you could process the output of this command to help copy the desire... | <p>I think that a Subversion check out can only check out a specific folder and not individual files. That said, the command:</p> <pre><code>svn log -r *revision* -q -v </code></pre> <p>will list the changes associated with the specified revision so you could process the output of this command to help copy the desire... | 63, 1555, 65722 | revision, svn, svn-checkout | <h1>Subversion: Check out only those files affected during a specific commit</h1>
<p>In Subversion, is it possible to check out <strong>only</strong> those files affected during a specific commit, provided you know the specific revision number?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,747 | svn | # Subversion: Check out only those files affected during a specific commit
In Subversion, is it possible to check out **only** those files affected during a specific commit, provided you know the specific revision number? | I think that a Subversion check out can only check out a specific folder and not individual files. That said, the command:
```
svn log -r *revision* -q -v
```
will list the changes associated with the specified revision so you could process the output of this command to help copy the desired files to somewhere after ... |
3665154 | How do you get a pager in svn diff? | 16 | 2010-09-08 06:30:21 | <p>I’d like <code>svn diff</code> to display colored diff through a pager (just like git does). I’ve succeeded to get a colored diff by setting the <code>diff-cmd</code> in <code>~/.subversion/config</code>:</p>
<pre><code>diff-cmd = colordiff
</code></pre>
<p>Now I’d like to pipe the diff output through a pager, how... | 2,753 | 17,279 | 2019-10-16 16:18:46 | 3,665,601 | 14 | 2010-09-08 07:46:52 | 251,122 | 2010-09-08 07:46:52 | https://stackoverflow.com/q/3665154 | https://stackoverflow.com/a/3665601 | <p>In the past I've used a wrapper script and set <code>diff-cmd</code> to this script:</p>
<pre><code>#!/bin/sh
colordiff "$@" | less -r
</code></pre>
<p>But then you get a separate pager for every file, I'm not sure if this is what you want. Nowadays I just write <code>svn diff | less</code>.</p>
<p>Another easy s... | <p>In the past I've used a wrapper script and set <code>diff-cmd</code> to this script:</p> <pre><code>#!/bin/sh colordiff "$@" | less -r </code></pre> <p>But then you get a separate pager for every file, I'm not sure if this is what you want. Nowadays I just write <code>svn diff | less</code>.</p> <p>Another easy s... | 63, 606 | diff, svn | <h1>How do you get a pager in svn diff?</h1>
<p>I’d like <code>svn diff</code> to display colored diff through a pager (just like git does). I’ve succeeded to get a colored diff by setting the <code>diff-cmd</code> in <code>~/.subversion/config</code>:</p>
<pre><code>diff-cmd = colordiff
</code></pre>
<p>Now I’d like... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,749 | svn | # How do you get a pager in svn diff?
I’d like `svn diff` to display colored diff through a pager (just like git does). I’ve succeeded to get a colored diff by setting the `diff-cmd` in `~/.subversion/config`:
```
diff-cmd = colordiff
```
Now I’d like to pipe the diff output through a pager, how do I do that? (Short... | In the past I've used a wrapper script and set `diff-cmd` to this script:
```
#!/bin/sh
colordiff "$@" | less -r
```
But then you get a separate pager for every file, I'm not sure if this is what you want. Nowadays I just write `svn diff | less`.
Another easy solution is making an alias: `alias svndiff='svn diff | l... |
419511 | Windows Backup for SVN Repositories | 16 | 2009-01-07 07:53:07 | <p>I am running a SVN server on my Windows Server and want to schedule an automated backup procedure. I will always be the only one working on the repository. Should I bother with hotcopy or can I use a simple Windows backup application to backup the repositories? What about xcopy or robocopy?</p>
| 18,104 | 51,949 | 2018-02-21 20:14:14 | 419,526 | 14 | 2009-01-07 08:04:10 | 10,420 | 2009-01-07 08:04:10 | https://stackoverflow.com/q/419511 | https://stackoverflow.com/a/419526 | <p>I find simply copy / pasting (XCopy) the repositories is the easiest solution. You may want to consider dumping the repository to a single file before you copy it as I find copying a single large file is much quicker than copying a bunch of smaller files. This probably isn't an issue if your repository is small, b... | <p>I find simply copy / pasting (XCopy) the repositories is the easiest solution. You may want to consider dumping the repository to a single file before you copy it as I find copying a single large file is much quicker than copying a bunch of smaller files. This probably isn't an issue if your repository is small, b... | 63, 64, 493 | backup, svn, windows | <h1>Windows Backup for SVN Repositories</h1>
<p>I am running a SVN server on my Windows Server and want to schedule an automated backup procedure. I will always be the only one working on the repository. Should I bother with hotcopy or can I use a simple Windows backup application to backup the repositories? What ab... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,751 | svn | # Windows Backup for SVN Repositories
I am running a SVN server on my Windows Server and want to schedule an automated backup procedure. I will always be the only one working on the repository. Should I bother with hotcopy or can I use a simple Windows backup application to backup the repositories? What about xcopy or... | I find simply copy / pasting (XCopy) the repositories is the easiest solution. You may want to consider dumping the repository to a single file before you copy it as I find copying a single large file is much quicker than copying a bunch of smaller files. This probably isn't an issue if your repository is small, but so... |
17205467 | svn: Querying mergeinfo requires version 3 of the FSFS filesystem schema; | 15 | 2013-06-20 04:47:04 | <p>I get this error when trying to query mergeinfo.</p>
<pre><code>$ svn mergeinfo --show-revs eligible https://svn.hq.corp/trunk https://svn.hq.corp/branches/RC-1
svn: Querying mergeinfo requires version 3 of the FSFS filesystem schema; filesystem '/mnt/svn/co/db' uses only version 1
</code></pre>
<p>I could not ... | 11,950 | 454,488 | 2018-09-10 10:49:33 | 18,606,156 | 14 | 2013-09-04 05:40:09 | 2,621,740 | 2013-09-04 05:40:09 | https://stackoverflow.com/q/17205467 | https://stackoverflow.com/a/18606156 | <p>You can upgrade your repository to the latest schema version with this:</p>
<pre><code> svnadmin upgrade /mnt/svn/co
</code></pre>
<p>After you also have upgraded the Subversion package.</p>
| <p>You can upgrade your repository to the latest schema version with this:</p> <pre><code> svnadmin upgrade /mnt/svn/co </code></pre> <p>After you also have upgraded the Subversion package.</p> | 63, 134270 | fsfs, svn | <h1>svn: Querying mergeinfo requires version 3 of the FSFS filesystem schema;</h1>
<p>I get this error when trying to query mergeinfo.</p>
<pre><code>$ svn mergeinfo --show-revs eligible https://svn.hq.corp/trunk https://svn.hq.corp/branches/RC-1
svn: Querying mergeinfo requires version 3 of the FSFS filesystem sch... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,752 | svn | # svn: Querying mergeinfo requires version 3 of the FSFS filesystem schema;
I get this error when trying to query mergeinfo.
```
$ svn mergeinfo --show-revs eligible https://svn.hq.corp/trunk https://svn.hq.corp/branches/RC-1
svn: Querying mergeinfo requires version 3 of the FSFS filesystem schema; filesystem '/mn... | You can upgrade your repository to the latest schema version with this:
```
svnadmin upgrade /mnt/svn/co
```
After you also have upgraded the Subversion package. |
4100121 | How do I serve html thru svn ? (Can svn act as a web server?) | 14 | 2010-11-04 18:48:54 | <p>I have checked in javadocs(html files) into svn. But, when I access the html files thru a browser, it gets interpreted as text. How, do I fix this ?</p>
| 6,358 | 479,805 | 2020-02-11 09:38:36 | 4,100,826 | 14 | 2010-11-04 20:07:26 | 256,544 | 2013-06-28 12:44:37 | https://stackoverflow.com/q/4100121 | https://stackoverflow.com/a/4100826 | <p>SVN is not a webserver. I guess you are talking about Subversion's Apache module!? If you want to view .html files as HTML then you should set <code>svn:mime-type=text/html</code>:</p>
<pre><code>svn propset svn:mime-type text/html *.html
</code></pre>
<p>See <a href="http://svnbook.red-bean.com/en/1.7/svn.advance... | <p>SVN is not a webserver. I guess you are talking about Subversion's Apache module!? If you want to view .html files as HTML then you should set <code>svn:mime-type=text/html</code>:</p> <pre><code>svn propset svn:mime-type text/html *.html </code></pre> <p>See <a href="http://svnbook.red-bean.com/en/1.7/svn.advance... | 2, 63 | html, svn | <h1>How do I serve html thru svn ? (Can svn act as a web server?)</h1>
<p>I have checked in javadocs(html files) into svn. But, when I access the html files thru a browser, it gets interpreted as text. How, do I fix this ?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,754 | svn | # How do I serve html thru svn ? (Can svn act as a web server?)
I have checked in javadocs(html files) into svn. But, when I access the html files thru a browser, it gets interpreted as text. How, do I fix this ? | SVN is not a webserver. I guess you are talking about Subversion's Apache module!? If you want to view .html files as HTML then you should set `svn:mime-type=text/html`:
```
svn propset svn:mime-type text/html *.html
```
See [Properties](http://svnbook.red-bean.com/en/1.7/svn.advanced.props.html) in the SVN Book.
> ... |
1214023 | SVN Repository Structure - Why is this better? | 14 | 2009-07-31 18:10:17 | <p>I've been told that most development shops have the following structure or at least close to this:</p>
<ul>
<li>Main Repository
<ul>
<li>Project folders underneath</li>
<li>Each Project folder has a trunk, branches, and tags folder</li>
</ul></li>
</ul>
<p>so:</p>
<pre><code>ReponsitoryMain
Project1
... | 34,993 | 93,468 | 2012-07-05 02:31:27 | 1,214,137 | 14 | 2009-07-31 18:34:19 | 11,208 | 2009-07-31 18:34:19 | https://stackoverflow.com/q/1214023 | https://stackoverflow.com/a/1214137 | <p>This way of organizing the repository:</p>
<pre><code>ReponsitoryMain
Project1
branches
trunk
tags
Project2
...
</code></pre>
<p>is best when your projects aren't that connected/dependent on each other. The other way around makes it easier to version your entire project suite. S... | <p>This way of organizing the repository:</p> <pre><code>ReponsitoryMain Project1 branches trunk tags Project2 ... </code></pre> <p>is best when your projects aren't that connected/dependent on each other. The other way around makes it easier to version your entire project suite. S... | 63 | svn | <h1>SVN Repository Structure - Why is this better?</h1>
<p>I've been told that most development shops have the following structure or at least close to this:</p>
<ul>
<li>Main Repository
<ul>
<li>Project folders underneath</li>
<li>Each Project folder has a trunk, branches, and tags folder</li>
</ul></li>
</ul>
<p>s... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,755 | svn | # SVN Repository Structure - Why is this better?
I've been told that most development shops have the following structure or at least close to this:
- Main Repository
- Project folders underneath
- Each Project folder has a trunk, branches, and tags folder
so:
```
ReponsitoryMain
Project1
branches
... | This way of organizing the repository:
```
ReponsitoryMain
Project1
branches
trunk
tags
Project2
...
```
is best when your projects aren't that connected/dependent on each other. The other way around makes it easier to version your entire project suite. So if you often release/pack... |
942302 | How to make SVN perform a command without making changes | 13 | 2009-06-02 22:47:11 | <p>In CVS I could do the following</p>
<pre><code>cvs -n update
</code></pre>
<p>And it would should me what would happen if I ran an update but without changing anything. I mainly use this to check if I am going to get a lot of conflicts.</p>
<p>In svn I would like to do the same but with the switch command</p>
<p... | 29,288 | 42,303 | 2020-01-08 17:44:12 | 942,370 | 14 | 2009-06-02 23:08:35 | 111,349 | 2009-06-02 23:08:35 | https://stackoverflow.com/q/942302 | https://stackoverflow.com/a/942370 | <p>Use <code>merge</code> and <code>--dry-run</code> with the same URLs you will use for the <code>switch</code>. It should give you the information you are looking for even though you'll be using <code>switch</code> instead of <code>merge</code> in the end.</p>
| <p>Use <code>merge</code> and <code>--dry-run</code> with the same URLs you will use for the <code>switch</code>. It should give you the information you are looking for even though you'll be using <code>switch</code> instead of <code>merge</code> in the end.</p> | 63 | svn | <h1>How to make SVN perform a command without making changes</h1>
<p>In CVS I could do the following</p>
<pre><code>cvs -n update
</code></pre>
<p>And it would should me what would happen if I ran an update but without changing anything. I mainly use this to check if I am going to get a lot of conflicts.</p>
<p>In s... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,757 | svn | # How to make SVN perform a command without making changes
In CVS I could do the following
```
cvs -n update
```
And it would should me what would happen if I ran an update but without changing anything. I mainly use this to check if I am going to get a lot of conflicts.
In svn I would like to do the same but with ... | Use `merge` and `--dry-run` with the same URLs you will use for the `switch`. It should give you the information you are looking for even though you'll be using `switch` instead of `merge` in the end. |
20952004 | ~/.subversion/auth/svn.simple/<hash> algorithm? | 12 | 2014-01-06 14:22:49 | <p>What is the algorithm for determining the file name in ~/.subversion/auth/svn.simple/ directory?</p>
<p>I am trying to setup subversion to authenticate non-interactively and to have it use an a priori created file for authentication (as opposed to having to authenticate manually for the first time). I cannot config... | 6,596 | 530,570 | 2014-11-12 00:26:58 | 20,958,463 | 14 | 2014-01-06 20:14:46 | 530,570 | 2014-11-12 00:26:58 | https://stackoverflow.com/q/20952004 | https://stackoverflow.com/a/20958463 | <p>The answer is to md5 the svn:realmstring.</p>
<p>Given:</p>
<pre><code><https://svn.apache.org:443> ASF Committers
</code></pre>
<p>verify hash via (assuming that your MD5 utility is <code>md5sum</code> for example, on a Mac it is <code>md5</code>)</p>
<pre><code>echo -n "<https://svn.apache.org:443>... | <p>The answer is to md5 the svn:realmstring.</p> <p>Given:</p> <pre><code><https://svn.apache.org:443> ASF Committers </code></pre> <p>verify hash via (assuming that your MD5 utility is <code>md5sum</code> for example, on a Mac it is <code>md5</code>)</p> <pre><code>echo -n "<https://svn.apache.org:443>... | 63, 183, 1283 | authentication, client, svn | <h1>~/.subversion/auth/svn.simple/<hash> algorithm?</h1>
<p>What is the algorithm for determining the file name in ~/.subversion/auth/svn.simple/ directory?</p>
<p>I am trying to setup subversion to authenticate non-interactively and to have it use an a priori created file for authentication (as opposed to having to a... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,758 | svn | # ~/.subversion/auth/svn.simple/ algorithm?
What is the algorithm for determining the file name in ~/.subversion/auth/svn.simple/ directory?
I am trying to setup subversion to authenticate non-interactively and to have it use an a priori created file for authentication (as opposed to having to authenticate manually f... | The answer is to md5 the svn:realmstring.
Given:
```
<https://svn.apache.org:443> ASF Committers
```
verify hash via (assuming that your MD5 utility is `md5sum` for example, on a Mac it is `md5`)
```
echo -n "<https://svn.apache.org:443> ASF Committers" | md5sum
> d3c8a345b14f6a1b42251aef8027ab57
``` |
15384022 | Continuous Integration Workflow & SVN | 12 | 2013-03-13 11:28:24 | <p>OK this may be a long one.</p>
<p>I'm trying to standardize and professionalize the setup we have at my workplace for doing live updates to our software. currently, everything is manual; so we have an opportunity to start from scratch.</p>
<p>i have installed jenkins, have repositories to work with, have a job tem... | 20,811 | 2,059,691 | 2013-03-14 10:35:49 | 15,385,756 | 14 | 2013-03-13 12:46:02 | 368,630 | 2013-03-14 02:15:05 | https://stackoverflow.com/q/15384022 | https://stackoverflow.com/a/15385756 | <p>Usually, with Continuous Integration, all work done by all developers is done on a single branch (or on trunk). In fact, Subversion was designed with this type of workflow in mind.
Having everyone work on the same branch may sound scary. After all, what about <em>collisions</em>? What if I want to include one bug/en... | <p>Usually, with Continuous Integration, all work done by all developers is done on a single branch (or on trunk). In fact, Subversion was designed with this type of workflow in mind. Having everyone work on the same branch may sound scary. After all, what about <em>collisions</em>? What if I want to include one bug/en... | 63, 1066, 64999 | continuous-integration, jenkins, svn | <h1>Continuous Integration Workflow & SVN</h1>
<p>OK this may be a long one.</p>
<p>I'm trying to standardize and professionalize the setup we have at my workplace for doing live updates to our software. currently, everything is manual; so we have an opportunity to start from scratch.</p>
<p>i have installed jenkins,... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,759 | svn | # Continuous Integration Workflow & SVN
OK this may be a long one.
I'm trying to standardize and professionalize the setup we have at my workplace for doing live updates to our software. currently, everything is manual; so we have an opportunity to start from scratch.
i have installed jenkins, have repositories to w... | Usually, with Continuous Integration, all work done by all developers is done on a single branch (or on trunk). In fact, Subversion was designed with this type of workflow in mind.
Having everyone work on the same branch may sound scary. After all, what about *collisions*? What if I want to include one bug/enhancement/... |
8910077 | SVN - completely remove revision from SVN server | 12 | 2012-01-18 12:26:43 | <p>I have unfortunately committed one big folder to SVN (it has about 1.4GB and about 10000 files, many of them binaries).
Is there any possibility to get back to previous revision and make SVN server to forget that next revision was done? For example, this commit was revision 120. So I want to make the top revision 1... | 13,635 | 983,532 | 2012-01-18 12:54:15 | 8,910,397 | 14 | 2012-01-18 12:54:15 | 116,166 | 2012-01-18 12:54:15 | https://stackoverflow.com/q/8910077 | https://stackoverflow.com/a/8910397 | <p>You have to dump the repository and then reload it, skipping over the revision you no longer want. (r120 in your example)</p>
<p>To do this, use the <code>svnadmin dump</code> command, followed by the <code>svnadmin load</code> command.</p>
<p>example:</p>
<pre><code>svnadmin dump c:\svn\my_repo -r0:119 > repo... | <p>You have to dump the repository and then reload it, skipping over the revision you no longer want. (r120 in your example)</p> <p>To do this, use the <code>svnadmin dump</code> command, followed by the <code>svnadmin load</code> command.</p> <p>example:</p> <pre><code>svnadmin dump c:\svn\my_repo -r0:119 > repo... | 63, 7330 | repository, svn | <h1>SVN - completely remove revision from SVN server</h1>
<p>I have unfortunately committed one big folder to SVN (it has about 1.4GB and about 10000 files, many of them binaries).
Is there any possibility to get back to previous revision and make SVN server to forget that next revision was done? For example, this com... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,760 | svn | # SVN - completely remove revision from SVN server
I have unfortunately committed one big folder to SVN (it has about 1.4GB and about 10000 files, many of them binaries).
Is there any possibility to get back to previous revision and make SVN server to forget that next revision was done? For example, this commit was re... | You have to dump the repository and then reload it, skipping over the revision you no longer want. (r120 in your example)
To do this, use the `svnadmin dump` command, followed by the `svnadmin load` command.
example:
```
svnadmin dump c:\svn\my_repo -r0:119 > repo.dump
svnadmin load c:\svn\my_new_repo < repo.dump
``... |
5244261 | Find the latest SVN tag | 11 | 2011-03-09 10:15:10 | <p>I am setting up a Continuous Integration job that patches an external library and releases the patched version locally.</p>
<p>However, the external library uses TRUNK for development, and I would like my CI job to automatically select the latest release tag for checkout.</p>
<p>Does SVN have that functionality?</... | 12,718 | 342,852 | 2013-11-11 11:49:29 | 5,245,544 | 14 | 2011-03-09 12:09:25 | 296,328 | 2011-03-09 12:09:25 | https://stackoverflow.com/q/5244261 | https://stackoverflow.com/a/5245544 | <p>Hm...What about the following:</p>
<pre><code>svn log URL/tags --limit 1
</code></pre>
<p>will print out the last tag.</p>
| <p>Hm...What about the following:</p> <pre><code>svn log URL/tags --limit 1 </code></pre> <p>will print out the last tag.</p> | 63, 456, 1066 | continuous-integration, svn, version-control | <h1>Find the latest SVN tag</h1>
<p>I am setting up a Continuous Integration job that patches an external library and releases the patched version locally.</p>
<p>However, the external library uses TRUNK for development, and I would like my CI job to automatically select the latest release tag for checkout.</p>
<p>Do... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,761 | svn | # Find the latest SVN tag
I am setting up a Continuous Integration job that patches an external library and releases the patched version locally.
However, the external library uses TRUNK for development, and I would like my CI job to automatically select the latest release tag for checkout.
Does SVN have that functi... | Hm...What about the following:
```
svn log URL/tags --limit 1
```
will print out the last tag. |
2440384 | svn branch commit - experimental commit | 11 | 2010-03-13 23:00:49 | <p>I've made some experimental code that I would like to save in the repository, but I don't want it on the main branch. How would you commit this to a branch?</p>
<p>Maybe I got this wrong, but of what I've understood about branching, all you actually do is copying already checked in code to another directory in the ... | 4,592 | 128,875 | 2010-03-13 23:31:42 | 2,440,397 | 14 | 2010-03-13 23:04:49 | 893 | 2010-03-13 23:04:49 | https://stackoverflow.com/q/2440384 | https://stackoverflow.com/a/2440397 | <p>That is indeed how you do it (at least in Subversion). For example:</p>
<pre>
svn cp svn://server/repo/trunk svn://server/repo/branches/experiment
svn switch svn://server/repo/branches/experiment
svn commit -m "testing stuff"
</pre>
<p>The Subversion <code>cp</code> (copy) operation is designed to be very cheap an... | <p>That is indeed how you do it (at least in Subversion). For example:</p> <pre> svn cp svn://server/repo/trunk svn://server/repo/branches/experiment svn switch svn://server/repo/branches/experiment svn commit -m "testing stuff" </pre> <p>The Subversion <code>cp</code> (copy) operation is designed to be very cheap an... | 63, 1879, 5597 | branch, commit, svn | <h1>svn branch commit - experimental commit</h1>
<p>I've made some experimental code that I would like to save in the repository, but I don't want it on the main branch. How would you commit this to a branch?</p>
<p>Maybe I got this wrong, but of what I've understood about branching, all you actually do is copying alr... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,762 | svn | # svn branch commit - experimental commit
I've made some experimental code that I would like to save in the repository, but I don't want it on the main branch. How would you commit this to a branch?
Maybe I got this wrong, but of what I've understood about branching, all you actually do is copying already checked in ... | That is indeed how you do it (at least in Subversion). For example:
```
svn cp svn://server/repo/trunk svn://server/repo/branches/experiment
svn switch svn://server/repo/branches/experiment
svn commit -m "testing stuff"
```
The Subversion `cp` (copy) operation is designed to be very cheap and doesn't actually make a ... |
14058629 | What does SVN checkout do? | 10 | 2012-12-27 17:24:48 | <p>Does "SVN" checkout put a build.xml file within the folder that is chosen?</p>
<p>Currently, I do not have permissions to the SVN repository. So I thought that I might just skip the SVN checkout step and proceed with the build. But I am getting an error that says Build.xml file does not exist. Is this build.xml fil... | 31,404 | 1,865,053 | 2016-08-15 15:06:25 | 14,058,767 | 14 | 2012-12-27 17:36:15 | 62,576 | 2012-12-27 17:49:31 | https://stackoverflow.com/q/14058629 | https://stackoverflow.com/a/14058767 | <p><code>svn checkout</code> checks out (retrieves) a working copy of the repository into the specified folder. If you don't have access to the repository, and there's not already a current copy of the source in the folder, you can't possibly do a build.</p>
<p>If there is a current copy of the source there, it should... | <p><code>svn checkout</code> checks out (retrieves) a working copy of the repository into the specified folder. If you don't have access to the repository, and there's not already a current copy of the source in the folder, you can't possibly do a build.</p> <p>If there is a current copy of the source there, it should... | 63 | svn | <h1>What does SVN checkout do?</h1>
<p>Does "SVN" checkout put a build.xml file within the folder that is chosen?</p>
<p>Currently, I do not have permissions to the SVN repository. So I thought that I might just skip the SVN checkout step and proceed with the build. But I am getting an error that says Build.xml file d... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,763 | svn | # What does SVN checkout do?
Does "SVN" checkout put a build.xml file within the folder that is chosen?
Currently, I do not have permissions to the SVN repository. So I thought that I might just skip the SVN checkout step and proceed with the build. But I am getting an error that says Build.xml file does not exist. I... | `svn checkout` checks out (retrieves) a working copy of the repository into the specified folder. If you don't have access to the repository, and there's not already a current copy of the source in the folder, you can't possibly do a build.
If there is a current copy of the source there, it should include `build.xml`.... |
10164132 | How to adjust SVN settings to convert line endlings on Windows? | 10 | 2012-04-15 17:00:52 | <p>I need to use SVN on Windows and would like to set it up such that line endings are always checked out in Windows style and always committed in Unix style, regardless which repository is used.</p>
<ol>
<li><p>Is this possible or will I have to write a configuration file for each repo? </p>
<p>If I have to write a ... | 9,742 | 1,334,782 | 2014-07-23 19:12:13 | 10,164,193 | 14 | 2012-04-15 17:08:01 | 1,249,950 | 2012-04-15 17:08:01 | https://stackoverflow.com/q/10164132 | https://stackoverflow.com/a/10164193 | <p>You need to set the <code>svn:eol-style</code> property to <code>native</code> for all files in the repository. Autoprops will set the property for files newly added to a repository, but for existing files, you need to add the property manually:</p>
<pre><code>svn propset svn:eol-style native example.c
svn commit
<... | <p>You need to set the <code>svn:eol-style</code> property to <code>native</code> for all files in the repository. Autoprops will set the property for files newly added to a repository, but for existing files, you need to add the property manually:</p> <pre><code>svn propset svn:eol-style native example.c svn commit <... | 63, 64, 12863 | eol, svn, windows | <h1>How to adjust SVN settings to convert line endlings on Windows?</h1>
<p>I need to use SVN on Windows and would like to set it up such that line endings are always checked out in Windows style and always committed in Unix style, regardless which repository is used.</p>
<ol>
<li><p>Is this possible or will I have to... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,764 | svn | # How to adjust SVN settings to convert line endlings on Windows?
I need to use SVN on Windows and would like to set it up such that line endings are always checked out in Windows style and always committed in Unix style, regardless which repository is used.
1. Is this possible or will I have to write a configuration... | You need to set the `svn:eol-style` property to `native` for all files in the repository. Autoprops will set the property for files newly added to a repository, but for existing files, you need to add the property manually:
```
svn propset svn:eol-style native example.c
svn commit
``` |
8258991 | Can you `svn status` the remote repository instead of you local working copy? | 10 | 2011-11-24 14:56:47 | <p>Is there an <code>svn</code> command to check which files would be downloaded from the remote repository if one should issue an <code>svn update</code>?</p>
| 7,811 | 221,650 | 2011-11-24 15:18:43 | 8,259,277 | 14 | 2011-11-24 15:18:43 | 428,381 | 2011-11-24 15:18:43 | https://stackoverflow.com/q/8258991 | https://stackoverflow.com/a/8259277 | <p>Found it:</p>
<p><a href="http://svnbook.red-bean.com/nightly/en/svn.ref.svn.html#svn.ref.svn.sw.show_updates" rel="noreferrer">http://svnbook.red-bean.com/nightly/en/svn.ref.svn.html#svn.ref.svn.sw.show_updates</a></p>
<p><code>svn status --show-updates</code></p>
<hr>
<p>Maybe you could use a specific <code>sv... | <p>Found it:</p> <p><a href="http://svnbook.red-bean.com/nightly/en/svn.ref.svn.html#svn.ref.svn.sw.show_updates" rel="noreferrer">http://svnbook.red-bean.com/nightly/en/svn.ref.svn.html#svn.ref.svn.sw.show_updates</a></p> <p><code>svn status --show-updates</code></p> <hr> <p>Maybe you could use a specific <code>sv... | 63 | svn | <h1>Can you `svn status` the remote repository instead of you local working copy?</h1>
<p>Is there an <code>svn</code> command to check which files would be downloaded from the remote repository if one should issue an <code>svn update</code>?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,765 | svn | # Can you `svn status` the remote repository instead of you local working copy?
Is there an `svn` command to check which files would be downloaded from the remote repository if one should issue an `svn update`? | Found it:
<http://svnbook.red-bean.com/nightly/en/svn.ref.svn.html#svn.ref.svn.sw.show_updates>
`svn status --show-updates`
---
Maybe you could use a specific `svn info` too?
<http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.info.html> |
577176 | Adding unversioned files to subversion | 10 | 2009-02-23 10:36:25 | <p>Is it possible to add files to subversion that isn't supposed to be versioned? F.ex. config-files that needs to be edited to match each individual environment. When a new programmer is connected to the project he should get the original file from subversion but it wont be commited after he edits it and it wont be ov... | 4,633 | 68,392 | 2013-08-26 08:48:22 | 577,185 | 14 | 2009-02-23 10:41:48 | 67,829 | 2009-02-23 13:08:24 | https://stackoverflow.com/q/577176 | https://stackoverflow.com/a/577185 | <p>I'd put the unversioned files up on a web or file server accessible to everyone using the project, and add a script to automatically (<code>wget</code>/<code>scp</code>/etc.) download the files (zipped if needed) and extract them to <a href="http://svnbook.red-bean.com/en/1.1/ch07s02.html" rel="nofollow noreferrer">... | <p>I'd put the unversioned files up on a web or file server accessible to everyone using the project, and add a script to automatically (<code>wget</code>/<code>scp</code>/etc.) download the files (zipped if needed) and extract them to <a href="http://svnbook.red-bean.com/en/1.1/ch07s02.html" rel="nofollow noreferrer">... | 63, 456, 7429 | sitecore, svn, version-control | <h1>Adding unversioned files to subversion</h1>
<p>Is it possible to add files to subversion that isn't supposed to be versioned? F.ex. config-files that needs to be edited to match each individual environment. When a new programmer is connected to the project he should get the original file from subversion but it wont... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,766 | svn | # Adding unversioned files to subversion
Is it possible to add files to subversion that isn't supposed to be versioned? F.ex. config-files that needs to be edited to match each individual environment. When a new programmer is connected to the project he should get the original file from subversion but it wont be commi... | I'd put the unversioned files up on a web or file server accessible to everyone using the project, and add a script to automatically (`wget`/`scp`/etc.) download the files (zipped if needed) and extract them to [svnignored](http://svnbook.red-bean.com/en/1.1/ch07s02.html) folders so that they don't get picked up by sub... |
9189786 | Get changed files from svn command line between two dates | 9 | 2012-02-08 08:22:36 | <p>I need to get the changed files list between two dates in SVN. </p>
<p>I have used the below command..</p>
<pre><code>svn diff -r{2011-10-12}:{2011-10-28} --summarize https://svn.blah.com/../ > output.txt
</code></pre>
<p>from some reason the files modified on 28-10-2011 are not populated in the output text f... | 10,834 | 696,264 | 2012-02-08 08:40:41 | 9,190,000 | 14 | 2012-02-08 08:40:41 | 650,084 | 2012-02-08 08:40:41 | https://stackoverflow.com/q/9189786 | https://stackoverflow.com/a/9190000 | <p>this is normal, when you give the date <code>{2011-10-28}</code> it means "on midnight"... thus specify one day more for the end of the range.</p>
| <p>this is normal, when you give the date <code>{2011-10-28}</code> it means "on midnight"... thus specify one day more for the end of the range.</p> | 63, 606 | diff, svn | <h1>Get changed files from svn command line between two dates</h1>
<p>I need to get the changed files list between two dates in SVN. </p>
<p>I have used the below command..</p>
<pre><code>svn diff -r{2011-10-12}:{2011-10-28} --summarize https://svn.blah.com/../ > output.txt
</code></pre>
<p>from some reason the ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,767 | svn | # Get changed files from svn command line between two dates
I need to get the changed files list between two dates in SVN.
I have used the below command..
```
svn diff -r{2011-10-12}:{2011-10-28} --summarize https://svn.blah.com/../ > output.txt
```
from some reason the files modified on 28-10-2011 are not populat... | this is normal, when you give the date `{2011-10-28}` it means "on midnight"... thus specify one day more for the end of the range. |
5663465 | Setup a GWT Project correctly with SVN and Eclipse | 9 | 2011-04-14 12:48:03 | <p>I'm trying to develop a small project using Eclipse and the Google Web Toolkit.
It's a (small) group project so I want to use SVN.</p>
<p>So far I have created a GWT Project in Eclipse and added it to my SVN Repository.
The problem is that when I use 'compile' on the project, it breaks SVN's metadata and the whole ... | 3,111 | 151,682 | 2012-07-13 16:05:33 | 5,665,272 | 14 | 2011-04-14 15:03:27 | 282,176 | 2012-07-13 16:05:33 | https://stackoverflow.com/q/5663465 | https://stackoverflow.com/a/5665272 | <p>In the answer below I'm assuming you're not using Maven. I tried to answer generically as well so the below should apply to any version control system (I'm on <a href="http://bazaar.canonical.com/en/">Bazaar</a>).</p>
<p>You want to commit the files which constitute the application source code (e.g. *.java files) a... | <p>In the answer below I'm assuming you're not using Maven. I tried to answer generically as well so the below should apply to any version control system (I'm on <a href="http://bazaar.canonical.com/en/">Bazaar</a>).</p> <p>You want to commit the files which constitute the application source code (e.g. *.java files) a... | 53, 63, 868 | eclipse, gwt, svn | <h1>Setup a GWT Project correctly with SVN and Eclipse</h1>
<p>I'm trying to develop a small project using Eclipse and the Google Web Toolkit.
It's a (small) group project so I want to use SVN.</p>
<p>So far I have created a GWT Project in Eclipse and added it to my SVN Repository.
The problem is that when I use 'comp... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,768 | svn | # Setup a GWT Project correctly with SVN and Eclipse
I'm trying to develop a small project using Eclipse and the Google Web Toolkit.
It's a (small) group project so I want to use SVN.
So far I have created a GWT Project in Eclipse and added it to my SVN Repository.
The problem is that when I use 'compile' on the proj... | In the answer below I'm assuming you're not using Maven. I tried to answer generically as well so the below should apply to any version control system (I'm on [Bazaar](http://bazaar.canonical.com/en/)).
You want to commit the files which constitute the application source code (e.g. *.java files) and configuration meta... |
2295661 | Fill @version tag with subversion in Eclipse | 9 | 2010-02-19 10:46:20 | <p>I would like to fill the comment tag @version with Subclipse or Subversion in Eclipse. CVS has done this automatically but Subversion isn't. This would be very helpful.</p>
<p>I tried to google "@version" but it seems impossible.</p>
<p>Example what CVS did:</p>
<pre><code><?php
/*
* @author Spankmaster
* ... | 8,394 | 131,664 | 2010-02-25 07:26:33 | 2,295,672 | 14 | 2010-02-19 10:48:06 | 259,243 | 2010-02-25 07:26:33 | https://stackoverflow.com/q/2295661 | https://stackoverflow.com/a/2295672 | <p>in svn it is $Revision$</p>
<pre><code>/**
* Last changed: $LastChangedDate$
* @author $Author$
* @version $Revision$
*/
</code></pre>
<p>also you must add the keywords to the project (folders and files)</p>
<p>Property svn:keywords set to LastChangedDate Author Id Revision HeadURL</p>
| <p>in svn it is $Revision$</p> <pre><code>/** * Last changed: $LastChangedDate$ * @author $Author$ * @version $Revision$ */ </code></pre> <p>also you must add the keywords to the project (folders and files)</p> <p>Property svn:keywords set to LastChangedDate Author Id Revision HeadURL</p> | 53, 55, 63, 7277 | eclipse, phpdoc, subclipse, svn | <h1>Fill @version tag with subversion in Eclipse</h1>
<p>I would like to fill the comment tag @version with Subclipse or Subversion in Eclipse. CVS has done this automatically but Subversion isn't. This would be very helpful.</p>
<p>I tried to google "@version" but it seems impossible.</p>
<p>Example what CVS did:</p... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,769 | svn | # Fill @version tag with subversion in Eclipse
I would like to fill the comment tag @version with Subclipse or Subversion in Eclipse. CVS has done this automatically but Subversion isn't. This would be very helpful.
I tried to google "@version" but it seems impossible.
Example what CVS did:
```
<?php
/*
* @autho... | in svn it is $Revision$
```
/**
* Last changed: $LastChangedDate$
* @author $Author$
* @version $Revision$
*/
```
also you must add the keywords to the project (folders and files)
Property svn:keywords set to LastChangedDate Author Id Revision HeadURL |
438377 | getting new file added to subversion without updating whole folder | 9 | 2009-01-13 09:00:11 | <p>What I want to do is be able to add a file to my folder which is under Subversion source control in my local computer and then commit it. no problem up to here. On the server I want to get the new file using Subversion but without having to do an 'Update' to whole folder (which may update a bunch of unrelated files)... | 4,901 | 5,754 | 2009-01-14 11:29:21 | 438,387 | 14 | 2009-01-13 09:05:44 | 24,181 | 2009-01-13 09:05:44 | https://stackoverflow.com/q/438377 | https://stackoverflow.com/a/438387 | <p>You can add a filename to the <code>svn up</code> command even if that file doesn't exist in the folder yet (as long as it exists in the repository):</p>
<pre><code>svn up newFile.txt
</code></pre>
<p>Edit: Using TortoiseSVN I <em>think</em> you go to "check for modifications" then click "Check repository", then r... | <p>You can add a filename to the <code>svn up</code> command even if that file doesn't exist in the folder yet (as long as it exists in the repository):</p> <pre><code>svn up newFile.txt </code></pre> <p>Edit: Using TortoiseSVN I <em>think</em> you go to "check for modifications" then click "Check repository", then r... | 63, 656, 1991 | svn, tortoisesvn, visualsvn | <h1>getting new file added to subversion without updating whole folder</h1>
<p>What I want to do is be able to add a file to my folder which is under Subversion source control in my local computer and then commit it. no problem up to here. On the server I want to get the new file using Subversion but without having to ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,771 | svn | # getting new file added to subversion without updating whole folder
What I want to do is be able to add a file to my folder which is under Subversion source control in my local computer and then commit it. no problem up to here. On the server I want to get the new file using Subversion but without having to do an 'Up... | You can add a filename to the `svn up` command even if that file doesn't exist in the folder yet (as long as it exists in the repository):
```
svn up newFile.txt
```
Edit: Using TortoiseSVN I *think* you go to "check for modifications" then click "Check repository", then right click -> "update" on the new file. |
15949759 | How do I find the location of a svn repository? | 8 | 2013-04-11 13:14:21 | <p>I have all the source files in my "local" directory. I do <code>svn up</code> and <code>svn ci</code> to down- and up-load code from and to repository, respectively.</p>
<p>Now I have realized that there is one directory in the repository for which I did not make a local copy. So, I need to do two things:</p>
<ol>... | 20,166 | 245,549 | 2014-05-12 14:13:07 | 15,953,047 | 14 | 2013-04-11 15:37:28 | 960,558 | 2013-04-11 15:37:28 | https://stackoverflow.com/q/15949759 | https://stackoverflow.com/a/15953047 | <p><code>svn info</code> inside repository and check "Repository root" string</p>
| <p><code>svn info</code> inside repository and check "Repository root" string</p> | 63, 19697, 59166 | svn, svn-repository, working-copy | <h1>How do I find the location of a svn repository?</h1>
<p>I have all the source files in my "local" directory. I do <code>svn up</code> and <code>svn ci</code> to down- and up-load code from and to repository, respectively.</p>
<p>Now I have realized that there is one directory in the repository for which I did not ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,772 | svn | # How do I find the location of a svn repository?
I have all the source files in my "local" directory. I do `svn up` and `svn ci` to down- and up-load code from and to repository, respectively.
Now I have realized that there is one directory in the repository for which I did not make a local copy. So, I need to do tw... | `svn info` inside repository and check "Repository root" string |
8016970 | SVN - show versioned local files only (command line)? | 8 | 2011-11-04 23:36:49 | <p>I have a folder, versioned under SVN, with let's say 100 of files which are not under revision control - and about 10 that are. </p>
<p>On svn, version 1.6.6, if I type <code>svn status</code>, I get unversioned files with a question mark, <code>?</code>, or the modified/added files <code>M</code>/<code>A</code> - ... | 9,100 | 277,826 | 2019-01-24 17:16:35 | 8,017,110 | 14 | 2011-11-04 23:59:26 | 526,535 | 2011-11-05 00:22:47 | https://stackoverflow.com/q/8016970 | https://stackoverflow.com/a/8017110 | <p><code>svn ls</code> will list all files. If you are not seeing all the files that you expect, maybe they are not in the latest revision, in which case specify the revision using <code>--revision</code>, or probably they are within folders and hence you will have to include <code>--recursive</code>.</p>
<p>Otherwise... | <p><code>svn ls</code> will list all files. If you are not seeing all the files that you expect, maybe they are not in the latest revision, in which case specify the revision using <code>--revision</code>, or probably they are within folders and hence you will have to include <code>--recursive</code>.</p> <p>Otherwise... | 63, 1231 | command-line, svn | <h1>SVN - show versioned local files only (command line)?</h1>
<p>I have a folder, versioned under SVN, with let's say 100 of files which are not under revision control - and about 10 that are. </p>
<p>On svn, version 1.6.6, if I type <code>svn status</code>, I get unversioned files with a question mark, <code>?</code... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,773 | svn | # SVN - show versioned local files only (command line)?
I have a folder, versioned under SVN, with let's say 100 of files which are not under revision control - and about 10 that are.
On svn, version 1.6.6, if I type `svn status`, I get unversioned files with a question mark, `?`, or the modified/added files `M`/`A` ... | `svn ls` will list all files. If you are not seeing all the files that you expect, maybe they are not in the latest revision, in which case specify the revision using `--revision`, or probably they are within folders and hence you will have to include `--recursive`.
Otherwise, if you don't want to use `svn ls`, you wi... |
7030817 | Can you prevent Xcode 4 from ignoring .a files in your SVN repository? | 8 | 2011-08-11 18:14:18 | <p>I have an Xcode 4 project that uses the Google Analytics SDK. The SDK includes two libraries with the standard .a extension. Xcode 4's built in SVN system is set to automatically ignore .a files which is a problem for me (I need them in the repository and can't ask everyone that uses the repository to install the fi... | 3,106 | 193,869 | 2013-03-27 11:50:48 | 7,889,514 | 14 | 2011-10-25 12:51:06 | 386,679 | 2013-03-27 11:50:48 | https://stackoverflow.com/q/7030817 | https://stackoverflow.com/a/7889514 | <p>It depends on how XCode is currently ignoring the file. Generally I find that it is ignoring it by choice, e.g. it has never even added it to version control and will not give you the option to add it. In which case you can open up a Terminal, navigate to your projects directory and execute something like:</p>
<p... | <p>It depends on how XCode is currently ignoring the file. Generally I find that it is ignoring it by choice, e.g. it has never even added it to version control and will not give you the option to add it. In which case you can open up a Terminal, navigate to your projects directory and execute something like:</p> <p... | 63, 59704 | svn, xcode4 | <h1>Can you prevent Xcode 4 from ignoring .a files in your SVN repository?</h1>
<p>I have an Xcode 4 project that uses the Google Analytics SDK. The SDK includes two libraries with the standard .a extension. Xcode 4's built in SVN system is set to automatically ignore .a files which is a problem for me (I need them in ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,774 | svn | # Can you prevent Xcode 4 from ignoring .a files in your SVN repository?
I have an Xcode 4 project that uses the Google Analytics SDK. The SDK includes two libraries with the standard .a extension. Xcode 4's built in SVN system is set to automatically ignore .a files which is a problem for me (I need them in the repos... | It depends on how XCode is currently ignoring the file. Generally I find that it is ignoring it by choice, e.g. it has never even added it to version control and will not give you the option to add it. In which case you can open up a Terminal, navigate to your projects directory and execute something like:
```
svn add... |
3806775 | Command line to list all merge(copies) in subversion? | 8 | 2010-09-27 18:42:01 | <p>How can you list all subversion merges?</p>
<p>For example:</p>
<pre><code>Trunk ____9_____14____20___
\ \ \
\______\_____\____
Branch01 10 15 21
</code></pre>
<p>If I branched on rev 9, and then did a merge at rev 14. What is the subversion command line that identifies rev... | 6,462 | 425,952 | 2012-10-24 12:51:13 | 3,806,869 | 14 | 2010-09-27 18:55:11 | 296,328 | 2010-09-28 07:56:14 | https://stackoverflow.com/q/3806775 | https://stackoverflow.com/a/3806869 | <p>You can use the svn plist command for this...</p>
<pre><code> svn plist -v svn:mergeinfo URL/branches/Branch01
</code></pre>
<p>will print out the information about the branch</p>
<p>an other way is to use the <code>--use-merge-history</code> </p>
<pre><code>svn log -v --use-merge-history URL/branches/Branch01
<... | <p>You can use the svn plist command for this...</p> <pre><code> svn plist -v svn:mergeinfo URL/branches/Branch01 </code></pre> <p>will print out the information about the branch</p> <p>an other way is to use the <code>--use-merge-history</code> </p> <pre><code>svn log -v --use-merge-history URL/branches/Branch01 <... | 63 | svn | <h1>Command line to list all merge(copies) in subversion?</h1>
<p>How can you list all subversion merges?</p>
<p>For example:</p>
<pre><code>Trunk ____9_____14____20___
\ \ \
\______\_____\____
Branch01 10 15 21
</code></pre>
<p>If I branched on rev 9, and then did a merge at ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,775 | svn | # Command line to list all merge(copies) in subversion?
How can you list all subversion merges?
For example:
```
Trunk ____9_____14____20___
\ \ \
\______\_____\____
Branch01 10 15 21
```
If I branched on rev 9, and then did a merge at rev 14. What is the subversion command li... | You can use the svn plist command for this...
```
svn plist -v svn:mergeinfo URL/branches/Branch01
```
will print out the information about the branch
an other way is to use the `--use-merge-history`
```
svn log -v --use-merge-history URL/branches/Branch01
```
EDIT:
The following seemed to me what you are searchi... |
2080952 | When making a branch in TortoiseSVN, what do "head", "working copy", and "specific" revisions mean? | 8 | 2010-01-17 12:31:23 | <p>A new user of Tortoise SVN, working over source control.</p>
<p>I have a Visual Studio solution which consists of 5 webAppliation projects.
I need to take one out and work over it in a branch.
When I try to branch it, It is asking me of one of these options</p>
<ul>
<li>head revision in repository</li>
<li>specif... | 7,185 | 175,216 | 2010-04-02 03:40:13 | 2,080,962 | 14 | 2010-01-17 12:37:04 | 75,170 | 2010-01-17 13:14:52 | https://stackoverflow.com/q/2080952 | https://stackoverflow.com/a/2080962 | <p>The <em>head revision</em> in the repository is the most recent revision that has been committed to source control. Your <em>working copy</em> revision is the revision reflected by the current tree you have. Since people may have committed things while you're working, your working copy revision may not necessarily e... | <p>The <em>head revision</em> in the repository is the most recent revision that has been committed to source control. Your <em>working copy</em> revision is the revision reflected by the current tree you have. Since people may have committed things while you're working, your working copy revision may not necessarily e... | 63, 456, 656, 1879 | branch, svn, tortoisesvn, version-control | <h1>When making a branch in TortoiseSVN, what do "head", "working copy", and "specific" revisions mean?</h1>
<p>A new user of Tortoise SVN, working over source control.</p>
<p>I have a Visual Studio solution which consists of 5 webAppliation projects.
I need to take one out and work over it in a branch.
When I try to... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,776 | svn | # When making a branch in TortoiseSVN, what do "head", "working copy", and "specific" revisions mean?
A new user of Tortoise SVN, working over source control.
I have a Visual Studio solution which consists of 5 webAppliation projects.
I need to take one out and work over it in a branch.
When I try to branch it, It is... | The *head revision* in the repository is the most recent revision that has been committed to source control. Your *working copy* revision is the revision reflected by the current tree you have. Since people may have committed things while you're working, your working copy revision may not necessarily equal the `HEAD` r... |
5986943 | Subclipse how to overwrite changed files | 7 | 2011-05-13 03:22:05 | <p>In subclipse (the svn plugin on Eclipse) how do I update my code to match the repository as if I had used the --force command line option? I need to overwrite everything, even the changed stuff. Team->Update adds notes about mismatches in files, breaking the code. Thanks!</p>
| 2,644 | 474,819 | 2011-05-13 03:51:03 | 5,986,970 | 14 | 2011-05-13 03:26:54 | 42,769 | 2011-05-13 03:51:03 | https://stackoverflow.com/q/5986943 | https://stackoverflow.com/a/5986970 | <p>Try synchronising first, and then use <code>override-and-update</code>.</p>
<p><code>Team</code> -> <code>Synchronize with repository</code>, then in <code>Team Synchronizing</code> perspective choose, <code>Override and Update</code></p>
| <p>Try synchronising first, and then use <code>override-and-update</code>.</p> <p><code>Team</code> -> <code>Synchronize with repository</code>, then in <code>Team Synchronizing</code> perspective choose, <code>Override and Update</code></p> | 17, 53, 55, 63 | eclipse, java, subclipse, svn | <h1>Subclipse how to overwrite changed files</h1>
<p>In subclipse (the svn plugin on Eclipse) how do I update my code to match the repository as if I had used the --force command line option? I need to overwrite everything, even the changed stuff. Team->Update adds notes about mismatches in files, breaking the code. Th... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,777 | svn | # Subclipse how to overwrite changed files
In subclipse (the svn plugin on Eclipse) how do I update my code to match the repository as if I had used the --force command line option? I need to overwrite everything, even the changed stuff. Team->Update adds notes about mismatches in files, breaking the code. Thanks! | Try synchronising first, and then use `override-and-update`.
`Team` -> `Synchronize with repository`, then in `Team Synchronizing` perspective choose, `Override and Update` |
574701 | checkout svn+ssh with loginname | 7 | 2009-02-22 10:31:09 | <p>I want to checkout something out of an repository .. but wenn i type : </p>
<pre><code>svn co svn+ssh://URL
</code></pre>
<p>i get asked for the password.I suppose he uses the username from my console which aren't the same.</p>
<p>So how can i checkout something with svn+ssh with a different loginname ?</p>
| 8,609 | 63,679 | 2013-09-10 22:33:32 | 574,715 | 14 | 2009-02-22 10:43:58 | 29,903 | 2009-02-22 10:43:58 | https://stackoverflow.com/q/574701 | https://stackoverflow.com/a/574715 | <p>SSH lets you select user in the connection URL:</p>
<pre><code>svn co svn+ssh://alabaster@URL
</code></pre>
| <p>SSH lets you select user in the connection URL:</p> <pre><code>svn co svn+ssh://alabaster@URL </code></pre> | 63, 488 | console, svn | <h1>checkout svn+ssh with loginname</h1>
<p>I want to checkout something out of an repository .. but wenn i type : </p>
<pre><code>svn co svn+ssh://URL
</code></pre>
<p>i get asked for the password.I suppose he uses the username from my console which aren't the same.</p>
<p>So how can i checkout something with s... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,778 | svn | # checkout svn+ssh with loginname
I want to checkout something out of an repository .. but wenn i type :
```
svn co svn+ssh://URL
```
i get asked for the password.I suppose he uses the username from my console which aren't the same.
So how can i checkout something with svn+ssh with a different loginname ? | SSH lets you select user in the connection URL:
```
svn co svn+ssh://alabaster@URL
``` |
16646942 | Unable to add file or folder to svn:ignore | 6 | 2013-05-20 09:57:30 | <p>I have some files and folders that i am unable to add to ignore because the option is disabled. Why is this so?</p>
<p><img src="https://i.sstatic.net/u6mEF.png" alt="enter image description here"></p>
| 13,486 | 321,862 | 2013-05-20 10:51:14 | 16,647,158 | 14 | 2013-05-20 10:10:12 | 1,220,269 | 2013-05-20 10:10:12 | https://stackoverflow.com/q/16646942 | https://stackoverflow.com/a/16647158 | <p>The problem is that the folder is already under version control.</p>
<p>Here's how I fix this type of problem when it comes up:</p>
<ol>
<li>In your local shell, make a copy of the <code>.settings</code> folder</li>
<li>Bring up the "SVN Repositories" view in Eclipse</li>
<li>Navigate to within the project on the ... | <p>The problem is that the folder is already under version control.</p> <p>Here's how I fix this type of problem when it comes up:</p> <ol> <li>In your local shell, make a copy of the <code>.settings</code> folder</li> <li>Bring up the "SVN Repositories" view in Eclipse</li> <li>Navigate to within the project on the ... | 53, 63 | eclipse, svn | <h1>Unable to add file or folder to svn:ignore</h1>
<p>I have some files and folders that i am unable to add to ignore because the option is disabled. Why is this so?</p>
<p><img src="https://i.sstatic.net/u6mEF.png" alt="enter image description here"></p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,779 | svn | # Unable to add file or folder to svn:ignore
I have some files and folders that i am unable to add to ignore because the option is disabled. Why is this so?
 | The problem is that the folder is already under version control.
Here's how I fix this type of problem when it comes up:
1. In your local shell, make a copy of the `.settings` folder
2. Bring up the "SVN Repositories" view in Eclipse
3. Navigate to within the project on the server (*e.g.* `/trunk/cboon/Project1/`)
4.... |
12909079 | svn: how to list last tags from svn command line? | 6 | 2012-10-16 06:56:34 | <p>Whe have built a packager who diff the last due tag in svn and prepare directory folding and copy the 'diff' files in the right plave.</p>
<p>but we must enter on commnand line the two tag name, and so we must consult revision graph (from windows).</p>
<p>Is there a way to list tags from svn command line client ?<... | 13,013 | 1,055,279 | 2013-06-07 12:33:32 | 12,913,142 | 14 | 2012-10-16 10:56:12 | 188,414 | 2012-10-16 10:56:12 | https://stackoverflow.com/q/12909079 | https://stackoverflow.com/a/12913142 | <p>This will work from the command line on Windows, Mac or Linux, though it requires that the current working directory is in the working copy:</p>
<pre><code>svn ls "^/tags"
</code></pre>
| <p>This will work from the command line on Windows, Mac or Linux, though it requires that the current working directory is in the working copy:</p> <pre><code>svn ls "^/tags" </code></pre> | 63, 64, 115, 656 | svn, tags, tortoisesvn, windows | <h1>svn: how to list last tags from svn command line?</h1>
<p>Whe have built a packager who diff the last due tag in svn and prepare directory folding and copy the 'diff' files in the right plave.</p>
<p>but we must enter on commnand line the two tag name, and so we must consult revision graph (from windows).</p>
<p>... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,780 | svn | # svn: how to list last tags from svn command line?
Whe have built a packager who diff the last due tag in svn and prepare directory folding and copy the 'diff' files in the right plave.
but we must enter on commnand line the two tag name, and so we must consult revision graph (from windows).
Is there a way to list ... | This will work from the command line on Windows, Mac or Linux, though it requires that the current working directory is in the working copy:
```
svn ls "^/tags"
``` |
52794 | Changing the Directory Structure in Subversion | 6 | 2008-09-09 20:11:21 | <p>How do I create a branch in subversion that is deeper' than just the 'branches' directory?</p>
<p>I have the standard <code>trunk</code>, <code>tags</code> and <code>branches</code> structure and I want to create a branch that is several directories deeper than the 'branches' tag.</p>
<p>Using the standard svn mov... | 2,749 | 277 | 2017-07-04 09:00:14 | 52,799 | 14 | 2008-09-09 20:13:06 | 1,199 | 2008-09-09 20:13:06 | https://stackoverflow.com/q/52794 | https://stackoverflow.com/a/52799 | <pre><code>svn copy --parents http://url/to/subproject http://url/to/repository/branches/version_1/project/subproject
</code></pre>
<p>That should create the directory you want to put the subproject in (<code>--parents</code> means "create the intermediate directories for me").</p>
| <pre><code>svn copy --parents http://url/to/subproject http://url/to/repository/branches/version_1/project/subproject </code></pre> <p>That should create the directory you want to put the subproject in (<code>--parents</code> means "create the intermediate directories for me").</p> | 63, 1879, 1880 | branch, svn, trunk | <h1>Changing the Directory Structure in Subversion</h1>
<p>How do I create a branch in subversion that is deeper' than just the 'branches' directory?</p>
<p>I have the standard <code>trunk</code>, <code>tags</code> and <code>branches</code> structure and I want to create a branch that is several directories deeper tha... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,781 | svn | # Changing the Directory Structure in Subversion
How do I create a branch in subversion that is deeper' than just the 'branches' directory?
I have the standard `trunk`, `tags` and `branches` structure and I want to create a branch that is several directories deeper than the 'branches' tag.
Using the standard svn mov... | ```
svn copy --parents http://url/to/subproject http://url/to/repository/branches/version_1/project/subproject
```
That should create the directory you want to put the subproject in (`--parents` means "create the intermediate directories for me"). |
1137761 | Using svn:ignore to ignore everything but certain files | 36 | 2009-07-16 13:52:51 | <p>With the svn:ignore property, is there a way I can specify what I want to ignore based on patterns which I don't want to ignore? In other words, I want to ignore everything <em>but</em> files ending in .xyz. How would I go about doing that (if it's even possible)?</p>
<p>One option I've explored is committing eve... | 16,213 | 46,375 | 2020-11-15 04:51:27 | 1,137,920 | 13 | 2009-07-16 14:16:40 | 33,433 | 2019-01-25 10:27:40 | https://stackoverflow.com/q/1137761 | https://stackoverflow.com/a/1137920 | <p>No, there is no exclusive matching like you described. <a href="http://svnbook.red-bean.com/en/1.8/svn.advanced.props.special.ignore.html" rel="nofollow noreferrer">This article</a> lists the possibilities for pattern matching. It's limited to:</p>
<ul>
<li><code>?</code> - Matches any single character</li>
<li><co... | <p>No, there is no exclusive matching like you described. <a href="http://svnbook.red-bean.com/en/1.8/svn.advanced.props.special.ignore.html" rel="nofollow noreferrer">This article</a> lists the possibilities for pattern matching. It's limited to:</p> <ul> <li><code>?</code> - Matches any single character</li> <li><co... | 63, 19160 | svn, svnignore | <h1>Using svn:ignore to ignore everything but certain files</h1>
<p>With the svn:ignore property, is there a way I can specify what I want to ignore based on patterns which I don't want to ignore? In other words, I want to ignore everything <em>but</em> files ending in .xyz. How would I go about doing that (if it's e... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,782 | svn | # Using svn:ignore to ignore everything but certain files
With the svn:ignore property, is there a way I can specify what I want to ignore based on patterns which I don't want to ignore? In other words, I want to ignore everything *but* files ending in .xyz. How would I go about doing that (if it's even possible)?
On... | No, there is no exclusive matching like you described. [This article](http://svnbook.red-bean.com/en/1.8/svn.advanced.props.special.ignore.html) lists the possibilities for pattern matching. It's limited to:
- `?` - Matches any single character
- `*` - Matches any string of characters, including the empty string
- `[`... |
5876658 | Change SVN password command line | 31 | 2011-05-03 22:52:41 | <p>How do I change the SVN password from command line?</p>
<p>It is the best way for me if it can be done from the command line.</p>
| 97,986 | 726,113 | 2016-12-07 22:26:57 | 5,876,699 | 13 | 2011-05-03 22:59:47 | 726,777 | 2012-04-17 17:53:38 | https://stackoverflow.com/q/5876658 | https://stackoverflow.com/a/5876699 | <p>You must edit a file under your <code>/repo/conf/passwd</code> using a command line editor like <a href="http://en.wikipedia.org/wiki/Vim_%28text_editor%29">Vim</a>.
There is no way to do this with Subversion command-line utilities like <code>svnadmin</code>.</p>
| <p>You must edit a file under your <code>/repo/conf/passwd</code> using a command line editor like <a href="http://en.wikipedia.org/wiki/Vim_%28text_editor%29">Vim</a>. There is no way to do this with Subversion command-line utilities like <code>svnadmin</code>.</p> | 63, 136, 220, 1231 | command-line, passwords, security, svn | <h1>Change SVN password command line</h1>
<p>How do I change the SVN password from command line?</p>
<p>It is the best way for me if it can be done from the command line.</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,783 | svn | # Change SVN password command line
How do I change the SVN password from command line?
It is the best way for me if it can be done from the command line. | You must edit a file under your `/repo/conf/passwd` using a command line editor like [Vim](http://en.wikipedia.org/wiki/Vim_%28text_editor%29).
There is no way to do this with Subversion command-line utilities like `svnadmin`. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.