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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3297530 | How do we count subversion commits per user | 27 | 2010-07-21 08:41:48 | <p>How do we count subversion commits per user</p>
| 18,755 | 191,503 | 2018-11-12 21:59:46 | 13,573,196 | 58 | 2012-11-26 21:09:06 | 1,854,670 | 2012-11-26 21:09:06 | https://stackoverflow.com/q/3297530 | https://stackoverflow.com/a/13573196 | <p>This gives a quick histogram by counting entries from the log in xml:</p>
<pre><code>svn log -v --xml | grep '<author.*/author>' | sort $* | uniq -c | sort -rn
1841 <author>joe</author><br>
735 <author>jimbob</author><br>
129 <author>sally</author>&... | <p>This gives a quick histogram by counting entries from the log in xml:</p> <pre><code>svn log -v --xml | grep '<author.*/author>' | sort $* | uniq -c | sort -rn 1841 <author>joe</author><br> 735 <author>jimbob</author><br> 129 <author>sally</author>&... | 63 | svn | <h1>How do we count subversion commits per user</h1>
<p>How do we count subversion commits per user</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,127 | svn | # How do we count subversion commits per user
How do we count subversion commits per user | This gives a quick histogram by counting entries from the log in xml:
```
svn log -v --xml | grep '<author.*/author>' | sort $* | uniq -c | sort -rn
1841 <author>joe</author><br>
735 <author>jimbob</author><br>
129 <author>sally</author><br>
32 <author>mike</author>
```
Could tack on a sed command to... |
3309602 | Subversion branch reintegration in v1.6 | 49 | 2010-07-22 13:56:25 | <p>Per <a href="https://stackoverflow.com/questions/102472/subversion-branch-reintegration">this old question</a>, using SVN 1.5, reintegrating a branch multiple times is problematic, and should be avoided.</p>
<p>There has been some rumbling to the effect that, "This is a known issue, and should be fixed in SVN 1.6."... | 9,971 | 1,288,364 | 2016-12-03 09:08:34 | 3,313,632 | 57 | 2010-07-22 21:26:24 | 1,288,364 | 2010-07-23 08:19:05 | https://stackoverflow.com/q/3309602 | https://stackoverflow.com/a/3313632 | <p><strong>To merge a branch <em>topic</em> into the trunk repeatedly</strong>: Do the following <em>on every merge.</em></p>
<ol>
<li><code>svn merge --reintegrate <topic> <trunk></code>, as you would normally. (<code>=> r</code><em><code>M</code></em>)</li>
<li><code>svn merge --record-only -c M ^/<... | <p><strong>To merge a branch <em>topic</em> into the trunk repeatedly</strong>: Do the following <em>on every merge.</em></p> <ol> <li><code>svn merge --reintegrate <topic> <trunk></code>, as you would normally. (<code>=> r</code><em><code>M</code></em>)</li> <li><code>svn merge --record-only -c M ^/<... | 63, 717, 1879 | branch, merge, svn | <h1>Subversion branch reintegration in v1.6</h1>
<p>Per <a href="https://stackoverflow.com/questions/102472/subversion-branch-reintegration">this old question</a>, using SVN 1.5, reintegrating a branch multiple times is problematic, and should be avoided.</p>
<p>There has been some rumbling to the effect that, "This i... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,129 | svn | # Subversion branch reintegration in v1.6
Per [this old question](https://stackoverflow.com/questions/102472/subversion-branch-reintegration), using SVN 1.5, reintegrating a branch multiple times is problematic, and should be avoided.
There has been some rumbling to the effect that, "This is a known issue, and should... | **To merge a branch *topic* into the trunk repeatedly**: Do the following *on every merge.*
1. `svn merge --reintegrate <topic> <trunk>`, as you would normally. (`=> r`*`M`*)
2. `svn merge --record-only -c M ^/<trunk> <topic>`. **Note the `record-only` option.**
Step 2 essentially tells the topic branch to consider t... |
3631465 | How to use "svn export" command to get a single file from the repository? | 43 | 2010-09-02 21:32:27 | <p>How can I use the <code>svn export</code> command to get a single file from the repository?</p>
<p>I've tried this:</p>
<pre><code>svn export e:\repositories\process\test.txt c:\
</code></pre>
<p>But I get this error:</p>
<blockquote>
<p>svn: e:\repositories\process is not a working copy</p>
</blockquote>
| 126,602 | 327,104 | 2020-05-14 13:22:41 | 3,631,970 | 57 | 2010-09-02 23:13:25 | 371,037 | 2010-09-02 23:13:25 | https://stackoverflow.com/q/3631465 | https://stackoverflow.com/a/3631970 | <p>Guessing from your directory name, you are trying to access the repository on the local filesystem. You still need to use URL syntax to access it:</p>
<pre><code>svn export file:///e:/repositories/process/test.txt c:\test.txt
</code></pre>
| <p>Guessing from your directory name, you are trying to access the repository on the local filesystem. You still need to use URL syntax to access it:</p> <pre><code>svn export file:///e:/repositories/process/test.txt c:\test.txt </code></pre> | 63, 64 | svn, windows | <h1>How to use "svn export" command to get a single file from the repository?</h1>
<p>How can I use the <code>svn export</code> command to get a single file from the repository?</p>
<p>I've tried this:</p>
<pre><code>svn export e:\repositories\process\test.txt c:\
</code></pre>
<p>But I get this error:</p>
<blockqu... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,130 | svn | # How to use "svn export" command to get a single file from the repository?
How can I use the `svn export` command to get a single file from the repository?
I've tried this:
```
svn export e:\repositories\process\test.txt c:\
```
But I get this error:
> svn: e:\repositories\process is not a working copy | Guessing from your directory name, you are trying to access the repository on the local filesystem. You still need to use URL syntax to access it:
```
svn export file:///e:/repositories/process/test.txt c:\test.txt
``` |
1609065 | Migrating VisualSVN Server from one Windows install to another | 35 | 2009-10-22 18:17:47 | <p>I have VisualSVN Server on my Vista laptop. The repository resides on the second hard drive. I am doing a clean install of Windows 7 in the next few days.</p>
<p>How do I configure or install VisualSVN Server again and keep the users, repositories, and settings intact from the previous installation?</p>
| 23,959 | 23,528 | 2020-03-24 11:14:37 | 1,609,119 | 57 | 2009-10-22 18:29:36 | 19,635 | 2009-10-22 19:03:26 | https://stackoverflow.com/q/1609065 | https://stackoverflow.com/a/1609119 | <p>You can simply copy the folder containing the repositories (e.g. <code>c:\repositories</code>) to the new machine. That folder contains all the users (in the file <code>htpasswd</code>) and the access rights (<code>authz</code>).</p>
<p>Note: this is true if you're using subversion authentication. I'm not sure if i... | <p>You can simply copy the folder containing the repositories (e.g. <code>c:\repositories</code>) to the new machine. That folder contains all the users (in the file <code>htpasswd</code>) and the access rights (<code>authz</code>).</p> <p>Note: this is true if you're using subversion authentication. I'm not sure if i... | 63, 11603 | svn, visualsvn-server | <h1>Migrating VisualSVN Server from one Windows install to another</h1>
<p>I have VisualSVN Server on my Vista laptop. The repository resides on the second hard drive. I am doing a clean install of Windows 7 in the next few days.</p>
<p>How do I configure or install VisualSVN Server again and keep the users, repositor... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,132 | svn | # Migrating VisualSVN Server from one Windows install to another
I have VisualSVN Server on my Vista laptop. The repository resides on the second hard drive. I am doing a clean install of Windows 7 in the next few days.
How do I configure or install VisualSVN Server again and keep the users, repositories, and setting... | You can simply copy the folder containing the repositories (e.g. `c:\repositories`) to the new machine. That folder contains all the users (in the file `htpasswd`) and the access rights (`authz`).
Note: this is true if you're using subversion authentication. I'm not sure if it's the same when using windows authenticat... |
869248 | Windows Pre-commit hook for comment length Subversion | 34 | 2009-05-15 15:09:53 | <p>I seem to be getting nowhere with this. Either searching the web for a script, etc. Anyone got a script that you can just edit the out-of-box pre-commit.tmpl in a Windows environment that requires x chars to be entered in for a comment on commit in Tortoise Subversion globally so that all members on the team are r... | 31,239 | 93,468 | 2018-09-13 15:56:18 | 869,317 | 57 | 2009-05-15 15:20:53 | 44,861 | 2009-05-15 16:14:34 | https://stackoverflow.com/q/869248 | https://stackoverflow.com/a/869317 | <p>This is a .bat file to require there is a comment. It checks for the existence of at least one character in the comment.</p>
<pre><code> @echo off
:: Stops commits that have empty log messages.
@echo off
setlocal
rem Subversion sends through the path to the repository and transaction id
set ... | <p>This is a .bat file to require there is a comment. It checks for the existence of at least one character in the comment.</p> <pre><code> @echo off :: Stops commits that have empty log messages. @echo off setlocal rem Subversion sends through the path to the repository and transaction id set ... | 63, 64, 656, 14000, 64649 | pre-commit, svn, svn-hooks, tortoisesvn, windows | <h1>Windows Pre-commit hook for comment length Subversion</h1>
<p>I seem to be getting nowhere with this. Either searching the web for a script, etc. Anyone got a script that you can just edit the out-of-box pre-commit.tmpl in a Windows environment that requires x chars to be entered in for a comment on commit in Tor... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,133 | svn | # Windows Pre-commit hook for comment length Subversion
I seem to be getting nowhere with this. Either searching the web for a script, etc. Anyone got a script that you can just edit the out-of-box pre-commit.tmpl in a Windows environment that requires x chars to be entered in for a comment on commit in Tortoise Subve... | This is a .bat file to require there is a comment. It checks for the existence of at least one character in the comment.
```
@echo off
:: Stops commits that have empty log messages.
@echo off
setlocal
rem Subversion sends through the path to the repository and transaction id
set REPOS=%1
set... |
11159711 | Unable to convert svn repository (without trunk) to git | 30 | 2012-06-22 15:49:33 | <p>I'm trying to convert my svn repo to git, but I'm not having much success.
The repository in question does not have anything like a "trunk".
The layout is the following:</p>
<pre>
/home/svn/
|--- /project1/
|--- /project2/
|--- /repos/project3/
</pre>
<p>And underneath those project folders are t... | 9,886 | 233,428 | 2012-06-25 20:00:34 | 11,196,469 | 57 | 2012-06-25 20:00:34 | 1,212,681 | 2012-06-25 20:00:34 | https://stackoverflow.com/q/11159711 | https://stackoverflow.com/a/11196469 | <p>Just remove <code>--stdlayout</code> option. It means trunk/branches/tags structure.</p>
| <p>Just remove <code>--stdlayout</code> option. It means trunk/branches/tags structure.</p> | 63, 119, 6452 | git, git-svn, svn | <h1>Unable to convert svn repository (without trunk) to git</h1>
<p>I'm trying to convert my svn repo to git, but I'm not having much success.
The repository in question does not have anything like a "trunk".
The layout is the following:</p>
<pre>
/home/svn/
|--- /project1/
|--- /project2/
|--- /repo... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,134 | svn | # Unable to convert svn repository (without trunk) to git
I'm trying to convert my svn repo to git, but I'm not having much success.
The repository in question does not have anything like a "trunk".
The layout is the following:
```
/home/svn/
|--- /project1/
|--- /project2/
|--- /repos/project3/
```... | Just remove `--stdlayout` option. It means trunk/branches/tags structure. |
22715303 | Svn error "Previous operation has not finished" | 27 | 2014-03-28 14:14:22 | <p>This morning i was committing several items to a svn repository. During the commit operation my operating system crashed and now all svn commands (Including clean up) ends up with the same error.</p>
<pre><code>Previous operation has not finished; run 'cleanup' if it was interrupted
Please execute the 'Cleanup' com... | 70,437 | 1,944,249 | 2024-02-16 11:48:47 | 22,715,470 | 57 | 2014-03-28 14:21:44 | 1,944,249 | 2014-11-03 21:21:19 | https://stackoverflow.com/q/22715303 | https://stackoverflow.com/a/22715470 | <p>Actually just found the answer to my question by looking <a href="http://www.anujvarma.com/svn-cleanup-failedprevious-operation-has-not-finished-run-cleanup-if-it-was-interrupted/">here</a></p>
<p>It seems that svn was stuck in the old operation.
All of these operations are stored in the database wc.db in the .svn ... | <p>Actually just found the answer to my question by looking <a href="http://www.anujvarma.com/svn-cleanup-failedprevious-operation-has-not-finished-run-cleanup-if-it-was-interrupted/">here</a></p> <p>It seems that svn was stuck in the old operation. All of these operations are stored in the database wc.db in the .svn ... | 63, 656 | svn, tortoisesvn | <h1>Svn error "Previous operation has not finished"</h1>
<p>This morning i was committing several items to a svn repository. During the commit operation my operating system crashed and now all svn commands (Including clean up) ends up with the same error.</p>
<pre><code>Previous operation has not finished; run 'cleanu... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,135 | svn | # Svn error "Previous operation has not finished"
This morning i was committing several items to a svn repository. During the commit operation my operating system crashed and now all svn commands (Including clean up) ends up with the same error.
```
Previous operation has not finished; run 'cleanup' if it was interru... | Actually just found the answer to my question by looking [here](http://www.anujvarma.com/svn-cleanup-failedprevious-operation-has-not-finished-run-cleanup-if-it-was-interrupted/)
It seems that svn was stuck in the old operation.
All of these operations are stored in the database wc.db in the .svn folder.
By downloadi... |
2394363 | SVN won't import *.a library | 27 | 2010-03-06 22:48:33 | <p>I've got a compiled static library (with an "a" extension) I want to include in my SVN repository but adding it never works (no problems adding other types of items). If I change the extension (e.g., "library.a" --> "library.b"), the add works. Why is the "a" extension failing? Is there a way around this without ren... | 28,881 | 287,963 | 2015-07-28 10:25:43 | 2,394,372 | 57 | 2010-03-06 22:51:46 | 252,624 | 2010-03-06 23:29:06 | https://stackoverflow.com/q/2394363 | https://stackoverflow.com/a/2394372 | <p>Have you checked your global ignore settings. On linux they are stored in ~/.subversion/config</p>
<p>The default on my machine is :</p>
<pre><code>global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo
</code></pre>
<p>so it ignores *.a files</p>
<p>more info <a href="http://svnbook.red-bean... | <p>Have you checked your global ignore settings. On linux they are stored in ~/.subversion/config</p> <p>The default on my machine is :</p> <pre><code>global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo </code></pre> <p>so it ignores *.a files</p> <p>more info <a href="http://svnbook.red-bean... | 63 | svn | <h1>SVN won't import *.a library</h1>
<p>I've got a compiled static library (with an "a" extension) I want to include in my SVN repository but adding it never works (no problems adding other types of items). If I change the extension (e.g., "library.a" --> "library.b"), the add works. Why is the "a" extension failing? ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,136 | svn | # SVN won't import *.a library
I've got a compiled static library (with an "a" extension) I want to include in my SVN repository but adding it never works (no problems adding other types of items). If I change the extension (e.g., "library.a" --> "library.b"), the add works. Why is the "a" extension failing? Is there ... | Have you checked your global ignore settings. On linux they are stored in ~/.subversion/config
The default on my machine is :
```
global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo
```
so it ignores *.a files
more info [here](http://svnbook.red-bean.com/en/1.1/ch07s02.html#svn-ch-7-sect-2.3.... |
2092344 | How do I delete a wrongly tagged directory in SVN? | 55 | 2010-01-19 09:16:02 | <p>I have a project Foo which I errantly created the wrong tag for. It should've read 'rMMDDYYYY' but I tagged it 'YYYYMMDD' instead. I realized my mistake after having commited my change. I now want to remove the YYYYMMDD folder under the tags directory and leave the rMMDDYYYY folder instead. i.e.</p>
<p>before:
foo... | 69,768 | 94,298 | 2015-08-31 08:19:19 | 2,092,354 | 56 | 2010-01-19 09:18:34 | 2,071,395 | 2013-04-28 17:02:03 | https://stackoverflow.com/q/2092344 | https://stackoverflow.com/a/2092354 | <p>If you want to remove the directory then use the <code>svn rm</code> command:</p>
<pre><code>svn rm foo/tags/YYYYMMDD
</code></pre>
| <p>If you want to remove the directory then use the <code>svn rm</code> command:</p> <pre><code>svn rm foo/tags/YYYYMMDD </code></pre> | 63, 115 | svn, tags | <h1>How do I delete a wrongly tagged directory in SVN?</h1>
<p>I have a project Foo which I errantly created the wrong tag for. It should've read 'rMMDDYYYY' but I tagged it 'YYYYMMDD' instead. I realized my mistake after having commited my change. I now want to remove the YYYYMMDD folder under the tags directory and l... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,138 | svn | # How do I delete a wrongly tagged directory in SVN?
I have a project Foo which I errantly created the wrong tag for. It should've read 'rMMDDYYYY' but I tagged it 'YYYYMMDD' instead. I realized my mistake after having commited my change. I now want to remove the YYYYMMDD folder under the tags directory and leave the ... | If you want to remove the directory then use the `svn rm` command:
```
svn rm foo/tags/YYYYMMDD
``` |
28035602 | Resolving a merge conflict when I do svn update | 34 | 2015-01-19 23:55:45 | <p>I am trying to learn basics of version control by Eric Sink - <a href="http://ericsink.com/vcbe/vcbe_usletter_lo.pdf">http://ericsink.com/vcbe/vcbe_usletter_lo.pdf</a></p>
<p>I am on page 22 now. I'll describe the scenario for you. Two users on the same computer, harry and sally are working on a file called lottery... | 73,738 | 2,643,274 | 2017-02-20 10:43:32 | 28,048,373 | 56 | 2015-01-20 14:53:40 | 368,630 | 2017-02-20 10:43:32 | https://stackoverflow.com/q/28035602 | https://stackoverflow.com/a/28048373 | <p>When you have multiple people changing the same file at once, it's very possible for both to change the same lines. This is what happened to you. Sally changes the same lines Harry was changing. When Harry did <code>svn update</code>, Subversion detected this, and is asking you what to do.</p>
<p>A word of warning:... | <p>When you have multiple people changing the same file at once, it's very possible for both to change the same lines. This is what happened to you. Sally changes the same lines Harry was changing. When Harry did <code>svn update</code>, Subversion detected this, and is asking you what to do.</p> <p>A word of warning:... | 63 | svn | <h1>Resolving a merge conflict when I do svn update</h1>
<p>I am trying to learn basics of version control by Eric Sink - <a href="http://ericsink.com/vcbe/vcbe_usletter_lo.pdf">http://ericsink.com/vcbe/vcbe_usletter_lo.pdf</a></p>
<p>I am on page 22 now. I'll describe the scenario for you. Two users on the same compu... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,139 | svn | # Resolving a merge conflict when I do svn update
I am trying to learn basics of version control by Eric Sink - <http://ericsink.com/vcbe/vcbe_usletter_lo.pdf>
I am on page 22 now. I'll describe the scenario for you. Two users on the same computer, harry and sally are working on a file called lottery.c which is store... | When you have multiple people changing the same file at once, it's very possible for both to change the same lines. This is what happened to you. Sally changes the same lines Harry was changing. When Harry did `svn update`, Subversion detected this, and is asking you what to do.
A word of warning: Sometimes Subversion... |
7703377 | Which subversive connector discovery to use | 33 | 2011-10-09 12:06:03 | <p>After I installed the SVN plugin in Eclipse and restarted it, a message appeared asking to install a connector. There are SVN Kit and Native JavaHL connectors. I am confused which one to install and why, can any one please guide me.</p>
| 16,304 | 429,377 | 2019-04-09 14:29:25 | 7,703,748 | 56 | 2011-10-09 13:13:34 | 2,603,665 | 2011-10-09 13:13:34 | https://stackoverflow.com/q/7703377 | https://stackoverflow.com/a/7703748 | <p>The two connectors should both work, here are the differences (more from experience by using them, not by reading their source code):</p>
<ul>
<li>SVN Kit:
<ul>
<li>Works on all platforms, is a Java-only implementation (no need for DLLs or shared libraries).</li>
<li>Is a little bit slower than JavaHL Native.</li>... | <p>The two connectors should both work, here are the differences (more from experience by using them, not by reading their source code):</p> <ul> <li>SVN Kit: <ul> <li>Works on all platforms, is a Java-only implementation (no need for DLLs or shared libraries).</li> <li>Is a little bit slower than JavaHL Native.</li>... | 17, 53, 63, 3311 | eclipse, java, subversive, svn | <h1>Which subversive connector discovery to use</h1>
<p>After I installed the SVN plugin in Eclipse and restarted it, a message appeared asking to install a connector. There are SVN Kit and Native JavaHL connectors. I am confused which one to install and why, can any one please guide me.</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,140 | svn | # Which subversive connector discovery to use
After I installed the SVN plugin in Eclipse and restarted it, a message appeared asking to install a connector. There are SVN Kit and Native JavaHL connectors. I am confused which one to install and why, can any one please guide me. | The two connectors should both work, here are the differences (more from experience by using them, not by reading their source code):
- SVN Kit:
- Works on all platforms, is a Java-only implementation (no need for DLLs or shared libraries).
- Is a little bit slower than JavaHL Native.
- Keeps its configuration a... |
2958249 | How to merge one single revision using Command Line | 27 | 2010-06-02 13:42:54 | <p>Hi I am trying to merge one single revision using CL in SVN using this command:</p>
<pre><code>svn merge -r 5454 URL
</code></pre>
<p>but I am getting the following error</p>
<pre><code>svn: Second revision required
</code></pre>
<p>My revision is not the latest revision but buried about 90 revisions from the la... | 29,743 | 151,438 | 2016-09-15 16:56:17 | 2,958,328 | 56 | 2010-06-02 13:51:49 | 113,586 | 2016-09-15 16:56:17 | https://stackoverflow.com/q/2958249 | https://stackoverflow.com/a/2958328 | <p>When you need to provide a diff (including <code>diff</code> and <code>merge</code> commands), you can use either <code>-rSTART:FINISH</code> (<code>-r5453:5454</code> in your case) or <code>-cSINGLE</code> (<code>-c5454</code> in your case).</p>
| <p>When you need to provide a diff (including <code>diff</code> and <code>merge</code> commands), you can use either <code>-rSTART:FINISH</code> (<code>-r5453:5454</code> in your case) or <code>-cSINGLE</code> (<code>-c5454</code> in your case).</p> | 63 | svn | <h1>How to merge one single revision using Command Line</h1>
<p>Hi I am trying to merge one single revision using CL in SVN using this command:</p>
<pre><code>svn merge -r 5454 URL
</code></pre>
<p>but I am getting the following error</p>
<pre><code>svn: Second revision required
</code></pre>
<p>My revision is not ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,142 | svn | # How to merge one single revision using Command Line
Hi I am trying to merge one single revision using CL in SVN using this command:
```
svn merge -r 5454 URL
```
but I am getting the following error
```
svn: Second revision required
```
My revision is not the latest revision but buried about 90 revisions from th... | When you need to provide a diff (including `diff` and `merge` commands), you can use either `-rSTART:FINISH` (`-r5453:5454` in your case) or `-cSINGLE` (`-c5454` in your case). |
4804529 | SVN check out linux | 26 | 2011-01-26 12:27:22 | <p>My <code>uname -a</code> reads :</p>
<pre><code>root@edu [~]# uname -a
Linux edu.educationlinked.com 2.6.18-028stab068.3 #1 SMP Tue Feb 16 20:21:42 MSK 2010 x86_64 x86_64 x86_64 GNU/Linux
</code></pre>
<p>I am not sure which Linux OS is this?</p>
<p>I already have a repository hosted at a free repository and i use T... | 133,298 | 303,517 | 2024-06-17 22:18:49 | 4,804,560 | 56 | 2011-01-26 12:30:55 | 298,282 | 2011-01-30 05:43:47 | https://stackoverflow.com/q/4804529 | https://stackoverflow.com/a/4804560 | <p>There should be <code>svn</code> utility on you box, if installed:</p>
<pre><code>$ svn checkout http://example.com/svn/somerepo somerepo
</code></pre>
<p>This will check out a working copy from a specified repository to a directory <code>somerepo</code> on our file system.</p>
<p>You may want to print commands, ... | <p>There should be <code>svn</code> utility on you box, if installed:</p> <pre><code>$ svn checkout http://example.com/svn/somerepo somerepo </code></pre> <p>This will check out a working copy from a specified repository to a directory <code>somerepo</code> on our file system.</p> <p>You may want to print commands, ... | 58, 63 | linux, svn | <h1>SVN check out linux</h1>
<p>My <code>uname -a</code> reads :</p>
<pre><code>root@edu [~]# uname -a
Linux edu.educationlinked.com 2.6.18-028stab068.3 #1 SMP Tue Feb 16 20:21:42 MSK 2010 x86_64 x86_64 x86_64 GNU/Linux
</code></pre>
<p>I am not sure which Linux OS is this?</p>
<p>I already have a repository hosted at ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,143 | svn | # SVN check out linux
My `uname -a` reads :
```
root@edu [~]# uname -a
Linux edu.educationlinked.com 2.6.18-028stab068.3 #1 SMP Tue Feb 16 20:21:42 MSK 2010 x86_64 x86_64 x86_64 GNU/Linux
```
I am not sure which Linux OS is this?
I already have a repository hosted at a free repository and i use Tortoise SVN on wind... | There should be `svn` utility on you box, if installed:
```
$ svn checkout http://example.com/svn/somerepo somerepo
```
This will check out a working copy from a specified repository to a directory `somerepo` on our file system.
You may want to print commands, supported by this utility:
```
$ svn help
```
`uname -... |
9190931 | Get changed files from SVN command line between two revisions | 42 | 2012-02-08 09:51:10 | <p>I need to get the changed files list between two revisions in SVN.</p>
<p>I have used the following command:</p>
<pre><code>svn diff -r 5001:6001 --summarize https://svn.blah.com/../ > output.txt
</code></pre>
<p>For some reason, the files modified on revision 5001 are not populated in the output text file.</... | 66,298 | 696,264 | 2016-05-04 18:24:46 | 9,190,974 | 55 | 2012-02-08 09:54:14 | 507,697 | 2016-05-04 18:24:46 | https://stackoverflow.com/q/9190931 | https://stackoverflow.com/a/9190974 | <p>Try <code>svn diff -r 5000:6001</code> instead. To understand this, consider the following: what would the output of <code>svn diff -r 100:100</code> look like? It would show no changes, because the revisions are the same. To see the changes for revision 100, we must use <code>-r 99:100</code>.</p>
| <p>Try <code>svn diff -r 5000:6001</code> instead. To understand this, consider the following: what would the output of <code>svn diff -r 100:100</code> look like? It would show no changes, because the revisions are the same. To see the changes for revision 100, we must use <code>-r 99:100</code>.</p> | 63, 606, 1555 | diff, revision, svn | <h1>Get changed files from SVN command line between two revisions</h1>
<p>I need to get the changed files list between two revisions in SVN.</p>
<p>I have used the following command:</p>
<pre><code>svn diff -r 5001:6001 --summarize https://svn.blah.com/../ > output.txt
</code></pre>
<p>For some reason, the files... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,146 | svn | # Get changed files from SVN command line between two revisions
I need to get the changed files list between two revisions in SVN.
I have used the following command:
```
svn diff -r 5001:6001 --summarize https://svn.blah.com/../ > output.txt
```
For some reason, the files modified on revision 5001 are not populate... | Try `svn diff -r 5000:6001` instead. To understand this, consider the following: what would the output of `svn diff -r 100:100` look like? It would show no changes, because the revisions are the same. To see the changes for revision 100, we must use `-r 99:100`. |
4544187 | Adding new files to a subversion repository | 37 | 2010-12-28 06:42:52 | <p>I have some files on my local Unix machine that need to be added to a <a href="http://en.wikipedia.org/wiki/Apache_Subversion" rel="noreferrer">Subversion</a> repository (access via HTTPS). How do I do this? </p>
<p>Doing <code>svn commit</code> in the directory just says it's not a working directory. </p>
| 149,886 | 41,284 | 2021-02-19 03:55:59 | 4,544,210 | 55 | 2010-12-28 06:47:42 | 12,471 | 2021-02-19 03:46:24 | https://stackoverflow.com/q/4544187 | https://stackoverflow.com/a/4544210 | <ul>
<li>Checkout a working copy of the repository (or at least the subdirectory that you want to add the files to): <code>svn checkout https://example.org/path/to/repo/bleh</code></li>
<li>Copy the files over there.</li>
<li><code>svn add file1 file2...</code></li>
<li><code>svn commit</code></li>
</ul>
<p>I am not aw... | <ul> <li>Checkout a working copy of the repository (or at least the subdirectory that you want to add the files to): <code>svn checkout https://example.org/path/to/repo/bleh</code></li> <li>Copy the files over there.</li> <li><code>svn add file1 file2...</code></li> <li><code>svn commit</code></li> </ul> <p>I am not aw... | 63 | svn | <h1>Adding new files to a subversion repository</h1>
<p>I have some files on my local Unix machine that need to be added to a <a href="http://en.wikipedia.org/wiki/Apache_Subversion" rel="noreferrer">Subversion</a> repository (access via HTTPS). How do I do this? </p>
<p>Doing <code>svn commit</code> in the directory ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,147 | svn | # Adding new files to a subversion repository
I have some files on my local Unix machine that need to be added to a [Subversion](http://en.wikipedia.org/wiki/Apache_Subversion) repository (access via HTTPS). How do I do this?
Doing `svn commit` in the directory just says it's not a working directory. | - Checkout a working copy of the repository (or at least the subdirectory that you want to add the files to): `svn checkout https://example.org/path/to/repo/bleh`
- Copy the files over there.
- `svn add file1 file2...`
- `svn commit`
I am not aware of a quicker option.
**Note:** if you are on the same machine as your... |
271380 | SVN - How to make an older revision the head revision? | 36 | 2008-11-07 06:30:46 | <p>One of the files in my current head revision got corrupted. I want to make an older revision of that file the head revision as usually people sync to head revsion in my project. How to do that?</p>
| 32,923 | 13,440 | 2008-11-07 08:38:47 | 271,387 | 55 | 2008-11-07 06:39:33 | 33,006 | 2008-11-07 06:39:33 | https://stackoverflow.com/q/271380 | https://stackoverflow.com/a/271387 | <p>You should revert all changes since that old reversion. In principle,</p>
<pre><code>svn merge -rHEAD:oldrev filename
svn commit -m "rolled back to oldrev"
</code></pre>
<p>should do. The later revisions are still there, but reverted.</p>
| <p>You should revert all changes since that old reversion. In principle,</p> <pre><code>svn merge -rHEAD:oldrev filename svn commit -m "rolled back to oldrev" </code></pre> <p>should do. The later revisions are still there, but reverted.</p> | 63 | svn | <h1>SVN - How to make an older revision the head revision?</h1>
<p>One of the files in my current head revision got corrupted. I want to make an older revision of that file the head revision as usually people sync to head revsion in my project. How to do that?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,148 | svn | # SVN - How to make an older revision the head revision?
One of the files in my current head revision got corrupted. I want to make an older revision of that file the head revision as usually people sync to head revsion in my project. How to do that? | You should revert all changes since that old reversion. In principle,
```
svn merge -rHEAD:oldrev filename
svn commit -m "rolled back to oldrev"
```
should do. The later revisions are still there, but reverted. |
5721456 | SVN error on connecting with eclipse | 24 | 2011-04-19 19:15:31 | <p>When I am trying to connect SVN to eclipse I am getting the following error: any idea how to resolve it?</p>
<pre><code>Failed to load JavaHL Library.
These are the errors that were encountered:
no libapr-1 in java.library.path
no libapriconv-1 in java.library.path
C:\Program Files (x86)\Subversion\bin\libeay32.dll... | 26,933 | 389,288 | 2016-04-15 00:10:07 | 5,724,181 | 55 | 2011-04-20 00:07:18 | 493,823 | 2011-04-20 00:07:18 | https://stackoverflow.com/q/5721456 | https://stackoverflow.com/a/5724181 | <pre><code>window -> preferences -> team -> svn
</code></pre>
<p>Choose SVN Interface:</p>
<p>client : SVNKit (Pure Java) </p>
<p>Apply and try again.</p>
| <pre><code>window -> preferences -> team -> svn </code></pre> <p>Choose SVN Interface:</p> <p>client : SVNKit (Pure Java) </p> <p>Apply and try again.</p> | 17, 53, 55, 63, 54098 | eclipse, java, javahl, subclipse, svn | <h1>SVN error on connecting with eclipse</h1>
<p>When I am trying to connect SVN to eclipse I am getting the following error: any idea how to resolve it?</p>
<pre><code>Failed to load JavaHL Library.
These are the errors that were encountered:
no libapr-1 in java.library.path
no libapriconv-1 in java.library.path
C:\P... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,149 | svn | # SVN error on connecting with eclipse
When I am trying to connect SVN to eclipse I am getting the following error: any idea how to resolve it?
```
Failed to load JavaHL Library.
These are the errors that were encountered:
no libapr-1 in java.library.path
no libapriconv-1 in java.library.path
C:\Program Files (x86)\S... | ```
window -> preferences -> team -> svn
```
Choose SVN Interface:
client : SVNKit (Pure Java)
Apply and try again. |
11105131 | Cannot install R-forge package using install.packages | 67 | 2012-06-19 16:16:50 | <p><a href="http://thread.gmane.org/gmane.comp.lang.r.finance/10265">This</a>, <a href="http://thread.gmane.org/gmane.comp.lang.r.finance/10022">question</a>, <a href="http://thread.gmane.org/gmane.comp.lang.r.finance/9715">is</a>, <a href="http://thread.gmane.org/gmane.comp.lang.r.finance/9359">asked</a>, <a href="htt... | 29,355 | 967,840 | 2018-02-01 11:22:37 | 11,105,132 | 54 | 2012-06-19 16:16:51 | 967,840 | 2012-06-19 19:10:27 | https://stackoverflow.com/q/11105131 | https://stackoverflow.com/a/11105132 | <p>R-Forge may fail to build a package for a few different reasons. It could be that
the documentation has not been updated to reflect recent changes in the code. Or,
it could be that some of the dependencies were not available at build time.</p>
<p>You can checkout the source code using svn. First, search for the p... | <p>R-Forge may fail to build a package for a few different reasons. It could be that the documentation has not been updated to reflect recent changes in the code. Or, it could be that some of the dependencies were not available at build time.</p> <p>You can checkout the source code using svn. First, search for the p... | 63, 529, 4452, 13613, 81369 | installation, package, r, r-forge, svn | <h1>Cannot install R-forge package using install.packages</h1>
<p><a href="http://thread.gmane.org/gmane.comp.lang.r.finance/10265">This</a>, <a href="http://thread.gmane.org/gmane.comp.lang.r.finance/10022">question</a>, <a href="http://thread.gmane.org/gmane.comp.lang.r.finance/9715">is</a>, <a href="http://thread.gm... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,150 | svn | # Cannot install R-forge package using install.packages
[This](http://thread.gmane.org/gmane.comp.lang.r.finance/10265), [question](http://thread.gmane.org/gmane.comp.lang.r.finance/10022), [is](http://thread.gmane.org/gmane.comp.lang.r.finance/9715), [asked](http://thread.gmane.org/gmane.comp.lang.r.finance/9359), [o... | R-Forge may fail to build a package for a few different reasons. It could be that
the documentation has not been updated to reflect recent changes in the code. Or,
it could be that some of the dependencies were not available at build time.
You can checkout the source code using svn. First, search for the project on th... |
312491 | Force an SVN checkout command to overwrite current files | 66 | 2008-11-23 13:10:36 | <p>I'm adding an existing site to SVN.</p>
<p>The files already exist on the webserver, and now identical copies (- configuration files) exist in the repository.</p>
<p>I want to convert the webserver directory into an SVN working copy, but when I run:</p>
<pre><code>svn checkout http://path.to/svn/repo/httpdocs .
<... | 117,010 | 13,238 | 2015-11-14 02:44:05 | 312,519 | 53 | 2008-11-23 13:27:16 | 987 | 2015-11-14 02:38:56 | https://stackoverflow.com/q/312491 | https://stackoverflow.com/a/312519 | <p>Try the <code>--force</code> option. <code>svn help checkout</code> gives the details.</p>
| <p>Try the <code>--force</code> option. <code>svn help checkout</code> gives the details.</p> | 63 | svn | <h1>Force an SVN checkout command to overwrite current files</h1>
<p>I'm adding an existing site to SVN.</p>
<p>The files already exist on the webserver, and now identical copies (- configuration files) exist in the repository.</p>
<p>I want to convert the webserver directory into an SVN working copy, but when I run:... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,151 | svn | # Force an SVN checkout command to overwrite current files
I'm adding an existing site to SVN.
The files already exist on the webserver, and now identical copies (- configuration files) exist in the repository.
I want to convert the webserver directory into an SVN working copy, but when I run:
```
svn checkout http... | Try the `--force` option. `svn help checkout` gives the details. |
1409735 | Our subversion server has a new IP address - now what? | 38 | 2009-09-11 08:37:10 | <p>We connect to the repository by ip address - a quick hack introduced by the guy before me, since we don't have a <em>real</em> server, just an old pc running apache, svn etc. We recently moved offices and it seems the "server" is using DHCP - it booted to a new IP address this morning. Logging into trac (also runnin... | 36,363 | 2,260 | 2017-01-28 11:59:46 | 1,409,741 | 53 | 2009-09-11 08:38:37 | 148,870 | 2009-10-23 19:31:34 | https://stackoverflow.com/q/1409735 | https://stackoverflow.com/a/1409741 | <p>Do an <code>svn switch</code> and use the <code>--relocate</code> option:</p>
<p><a href="http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.switch.html" rel="noreferrer">http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.switch.html</a></p>
<p>(or in TortoiseSVN, right-click -> TortoiseSVN -> Relocate...)</p>
<p>The... | <p>Do an <code>svn switch</code> and use the <code>--relocate</code> option:</p> <p><a href="http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.switch.html" rel="noreferrer">http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.switch.html</a></p> <p>(or in TortoiseSVN, right-click -> TortoiseSVN -> Relocate...)</p> <p>The... | 63 | svn | <h1>Our subversion server has a new IP address - now what?</h1>
<p>We connect to the repository by ip address - a quick hack introduced by the guy before me, since we don't have a <em>real</em> server, just an old pc running apache, svn etc. We recently moved offices and it seems the "server" is using DHCP - it booted ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,152 | svn | # Our subversion server has a new IP address - now what?
We connect to the repository by ip address - a quick hack introduced by the guy before me, since we don't have a *real* server, just an old pc running apache, svn etc. We recently moved offices and it seems the "server" is using DHCP - it booted to a new IP addr... | Do an `svn switch` and use the `--relocate` option:
<http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.switch.html>
(or in TortoiseSVN, right-click -> TortoiseSVN -> Relocate...)
The relocate does not require repository access and is meant exactly for the case where the content is the exact same but the repository ba... |
1537980 | Subclipse conflict resolution | 32 | 2009-10-08 13:59:43 | <p>Me and my friend using flex builder (eclipse based) with subclipse for a project.</p>
<p>Before committing I always update but sometimes I could not commit because of conflicts. Then I use Team->Synchronize with Repository and it shows at the right side latest from repository and at the left side the my current ... | 52,830 | 124,232 | 2017-03-05 07:04:39 | 1,540,407 | 53 | 2009-10-08 20:54:35 | 185,728 | 2010-10-11 14:59:49 | https://stackoverflow.com/q/1537980 | https://stackoverflow.com/a/1540407 | <p>Yes, you are right. There is no button for that. in the Diff View(Side-by-Side View) the items in red are in conflict. They can not be automatically merged. You must review the item in conflict and manually resolve it by copying/editing the block of code that is in conflict.</p>
<p>After committing to or updatin... | <p>Yes, you are right. There is no button for that. in the Diff View(Side-by-Side View) the items in red are in conflict. They can not be automatically merged. You must review the item in conflict and manually resolve it by copying/editing the block of code that is in conflict.</p> <p>After committing to or updatin... | 53, 55, 63, 456 | eclipse, subclipse, svn, version-control | <h1>Subclipse conflict resolution</h1>
<p>Me and my friend using flex builder (eclipse based) with subclipse for a project.</p>
<p>Before committing I always update but sometimes I could not commit because of conflicts. Then I use Team->Synchronize with Repository and it shows at the right side latest from repository... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,153 | svn | # Subclipse conflict resolution
Me and my friend using flex builder (eclipse based) with subclipse for a project.
Before committing I always update but sometimes I could not commit because of conflicts. Then I use Team->Synchronize with Repository and it shows at the right side latest from repository and at the left ... | Yes, you are right. There is no button for that. in the Diff View(Side-by-Side View) the items in red are in conflict. They can not be automatically merged. You must review the item in conflict and manually resolve it by copying/editing the block of code that is in conflict.
After committing to or updating from reposi... |
8064378 | How to delete an SVN project from SVN repository | 31 | 2011-11-09 11:31:19 | <p>Can anyone please suggest me how to delete complete SVN project from SVN repository (svn repository is in linux). I found "svn delete", but don't think it does the same.
It only helps in removing files or sub-folders but not the entire project.</p>
| 167,125 | 593,835 | 2016-12-16 19:43:14 | 8,064,480 | 53 | 2011-11-09 11:39:44 | 236,757 | 2015-08-31 06:40:45 | https://stackoverflow.com/q/8064378 | https://stackoverflow.com/a/8064480 | <blockquote>
<p>this answer can be confusing</p>
</blockquote>
<p><strong>do read the comments attached to this post and make sure this is what you are after</strong> </p>
<p>'svn delete' works against repository content, not against the repository itself. for doing repository maintenance (like completely deleting ... | <blockquote> <p>this answer can be confusing</p> </blockquote> <p><strong>do read the comments attached to this post and make sure this is what you are after</strong> </p> <p>'svn delete' works against repository content, not against the repository itself. for doing repository maintenance (like completely deleting ... | 63 | svn | <h1>How to delete an SVN project from SVN repository</h1>
<p>Can anyone please suggest me how to delete complete SVN project from SVN repository (svn repository is in linux). I found "svn delete", but don't think it does the same.
It only helps in removing files or sub-folders but not the entire project.</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,154 | svn | # How to delete an SVN project from SVN repository
Can anyone please suggest me how to delete complete SVN project from SVN repository (svn repository is in linux). I found "svn delete", but don't think it does the same.
It only helps in removing files or sub-folders but not the entire project. | > this answer can be confusing
**do read the comments attached to this post and make sure this is what you are after**
'svn delete' works against repository content, not against the repository itself. for doing repository maintenance (like completely deleting one) you should use svnadmin.
However, there's a reason wh... |
111436 | How can I get the Subversion revision number in PHP? | 31 | 2008-09-21 17:13:35 | <p>I want to have my PHP application labeled with the revision number which it uses, but I don't want to use <a href="http://en.wikipedia.org/wiki/CruiseControl" rel="nofollow noreferrer">CruiseControl</a> or update a file and upload it every time. How should I do it?</p>
| 32,911 | 19,929 | 2017-11-12 13:45:51 | 116,010 | 53 | 2008-09-22 16:44:40 | 6,346 | 2008-09-22 16:44:40 | https://stackoverflow.com/q/111436 | https://stackoverflow.com/a/116010 | <p>SVN keywords is not a good solution. As others pointed out adding $Revision$ in a file only affects <strong>the specific file</strong>, which may not change for a long time.</p>
<p>Remembering to "edit" a file (by adding or removing a blank line) before every commit is pointless. You could as well just type the rev... | <p>SVN keywords is not a good solution. As others pointed out adding $Revision$ in a file only affects <strong>the specific file</strong>, which may not change for a long time.</p> <p>Remembering to "edit" a file (by adding or removing a blank line) before every commit is pointless. You could as well just type the rev... | 5, 63, 1555 | php, revision, svn | <h1>How can I get the Subversion revision number in PHP?</h1>
<p>I want to have my PHP application labeled with the revision number which it uses, but I don't want to use <a href="http://en.wikipedia.org/wiki/CruiseControl" rel="nofollow noreferrer">CruiseControl</a> or update a file and upload it every time. How shoul... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,155 | svn | # How can I get the Subversion revision number in PHP?
I want to have my PHP application labeled with the revision number which it uses, but I don't want to use [CruiseControl](http://en.wikipedia.org/wiki/CruiseControl) or update a file and upload it every time. How should I do it? | SVN keywords is not a good solution. As others pointed out adding $Revision$ in a file only affects **the specific file**, which may not change for a long time.
Remembering to "edit" a file (by adding or removing a blank line) before every commit is pointless. You could as well just type the revision by hand.
One goo... |
11162473 | How do I create a tag from an old revision in Subversion when using Assembla? | 24 | 2012-06-22 18:56:53 | <p>I use Assembla to manage my Subversion repository. I have started some major revisions to my codebase and want to create a Tag of my most recent production revision ( which I forgot to do when I pushed that rev live to production a few weeks ago ).</p>
<p>I'm currently on revision 588, and want to create a Tag of ... | 24,780 | 456,578 | 2012-06-22 19:35:59 | 11,162,964 | 53 | 2012-06-22 19:35:59 | 368,630 | 2012-06-22 19:35:59 | https://stackoverflow.com/q/11162473 | https://stackoverflow.com/a/11162964 | <p>You can always use the <code>-r</code> parameter to refer to a specific revision. When doing so, you can also use the <code>@rev</code> revision pinning to make sure you're referring to the layout of the Subversion revision at a particular revision. The following will create a tag from trunk on revision 577 and call... | <p>You can always use the <code>-r</code> parameter to refer to a specific revision. When doing so, you can also use the <code>@rev</code> revision pinning to make sure you're referring to the layout of the Subversion revision at a particular revision. The following will create a tag from trunk on revision 577 and call... | 63, 1879, 12204 | assembla, branch, svn | <h1>How do I create a tag from an old revision in Subversion when using Assembla?</h1>
<p>I use Assembla to manage my Subversion repository. I have started some major revisions to my codebase and want to create a Tag of my most recent production revision ( which I forgot to do when I pushed that rev live to production... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,156 | svn | # How do I create a tag from an old revision in Subversion when using Assembla?
I use Assembla to manage my Subversion repository. I have started some major revisions to my codebase and want to create a Tag of my most recent production revision ( which I forgot to do when I pushed that rev live to production a few wee... | You can always use the `-r` parameter to refer to a specific revision. When doing so, you can also use the `@rev` revision pinning to make sure you're referring to the layout of the Subversion revision at a particular revision. The following will create a tag from trunk on revision 577 and call this tag `REV-1.2`:
```... |
341310 | List all files changed by a particular user in subversion | 69 | 2008-12-04 16:55:40 | <p>Is it possible to get a list of all files modified/added/deleted by a particular user?</p>
<p>The goal is to get an idea of what a user did for the day (or date range).</p>
| 48,181 | 39,677 | 2015-09-02 05:03:23 | 341,457 | 52 | 2008-12-04 17:35:57 | 40,618 | 2008-12-04 17:35:57 | https://stackoverflow.com/q/341310 | https://stackoverflow.com/a/341457 | <p>Here's an example, using the <a href="http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.log.html" rel="noreferrer">svn log command</a> and <a href="http://www.google.com/search?hl=en&q=linux+sed+command" rel="noreferrer">linux sed command</a>, with your username, 'blankman':</p>
<pre><code>svn log | sed -n '/bla... | <p>Here's an example, using the <a href="http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.log.html" rel="noreferrer">svn log command</a> and <a href="http://www.google.com/search?hl=en&q=linux+sed+command" rel="noreferrer">linux sed command</a>, with your username, 'blankman':</p> <pre><code>svn log | sed -n '/bla... | 63 | svn | <h1>List all files changed by a particular user in subversion</h1>
<p>Is it possible to get a list of all files modified/added/deleted by a particular user?</p>
<p>The goal is to get an idea of what a user did for the day (or date range).</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,157 | svn | # List all files changed by a particular user in subversion
Is it possible to get a list of all files modified/added/deleted by a particular user?
The goal is to get an idea of what a user did for the day (or date range). | Here's an example, using the [svn log command](http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.log.html) and [linux sed command](http://www.google.com/search?hl=en&q=linux+sed+command), with your username, 'blankman':
```
svn log | sed -n '/blankman/,/-----$/ p'
```
If you're looking to obtain this information with ... |
7069161 | How to switch existing Intellij IDEA projects from SVN to Git SVN | 25 | 2011-08-15 18:43:10 | <p>I currently have existing Intellij IDEA projects that are tied to the SVN repository. I'm thinking of switching these projects to use Git SVN because I find the need to have a local version control system when I'm not connected to the SVN repository.</p>
<p>Since Intellij IDEA doesn't provide the Git SVN bridge, I ... | 19,086 | 341,508 | 2022-04-20 12:41:47 | 7,069,278 | 52 | 2011-08-15 18:53:04 | 62,130 | 2015-10-20 12:49:27 | https://stackoverflow.com/q/7069161 | https://stackoverflow.com/a/7069278 | <p>You can select the version control system for the current project from <code>File | Settings | Version Control</code>. The setting is stored in one of the project files (<code>.idea/vcs.xml</code>) so if you don't commit that file to version control, you can use different version control system on different machines... | <p>You can select the version control system for the current project from <code>File | Settings | Version Control</code>. The setting is stored in one of the project files (<code>.idea/vcs.xml</code>) so if you don't commit that file to version control, you can use different version control system on different machines... | 63, 119, 6452, 8945 | git, git-svn, intellij-idea, svn | <h1>How to switch existing Intellij IDEA projects from SVN to Git SVN</h1>
<p>I currently have existing Intellij IDEA projects that are tied to the SVN repository. I'm thinking of switching these projects to use Git SVN because I find the need to have a local version control system when I'm not connected to the SVN rep... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,160 | svn | # How to switch existing Intellij IDEA projects from SVN to Git SVN
I currently have existing Intellij IDEA projects that are tied to the SVN repository. I'm thinking of switching these projects to use Git SVN because I find the need to have a local version control system when I'm not connected to the SVN repository.
... | You can select the version control system for the current project from `File | Settings | Version Control`. The setting is stored in one of the project files (`.idea/vcs.xml`) so if you don't commit that file to version control, you can use different version control system on different machines. |
4617611 | svn: Can't open file '.svn/lock': Permission denied on MAc | 22 | 2011-01-06 17:13:24 | <p>I can't make this go away and I've tried everything. I don't really care how horrible and hacky the answer is, I just want it to go away. Can anyone help? Thanks.</p>
<p>EDIT:</p>
<p>I'm trying to basic commands, i.e.</p>
<pre><code>cd MyDirectory/
svn update
</code></pre>
| 25,849 | 154,280 | 2013-03-08 16:47:22 | 4,617,653 | 52 | 2011-01-06 17:17:32 | 469,276 | 2011-01-14 15:45:04 | https://stackoverflow.com/q/4617611 | https://stackoverflow.com/a/4617653 | <p>You might not have write permission on the directory</p>
<pre><code>sudo chown -R $(id -u):$(id -g) MyDirectory
chmod -R u+w MyDirectory
</code></pre>
| <p>You might not have write permission on the directory</p> <pre><code>sudo chown -R $(id -u):$(id -g) MyDirectory chmod -R u+w MyDirectory </code></pre> | 63, 369 | macos, svn | <h1>svn: Can't open file '.svn/lock': Permission denied on MAc</h1>
<p>I can't make this go away and I've tried everything. I don't really care how horrible and hacky the answer is, I just want it to go away. Can anyone help? Thanks.</p>
<p>EDIT:</p>
<p>I'm trying to basic commands, i.e.</p>
<pre><code>cd MyDirector... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,161 | svn | # svn: Can't open file '.svn/lock': Permission denied on MAc
I can't make this go away and I've tried everything. I don't really care how horrible and hacky the answer is, I just want it to go away. Can anyone help? Thanks.
EDIT:
I'm trying to basic commands, i.e.
```
cd MyDirectory/
svn update
``` | You might not have write permission on the directory
```
sudo chown -R $(id -u):$(id -g) MyDirectory
chmod -R u+w MyDirectory
``` |
6071280 | Subversion switch: How can I see which branch is current? | 47 | 2011-05-20 11:31:08 | <p>We're experimenting with Subversion as a possible replacement of our current <a href="http://en.wikipedia.org/wiki/StarTeam">Starteam 2005 SCM</a>, (so our SVN knowledge is limited at the moment :-)).</p>
<p>I've been experimenting with the switch command (using the TortoiseSVN client) and was surprised that, after... | 28,880 | 501,717 | 2021-09-28 03:59:33 | 6,100,733 | 51 | 2011-05-23 17:32:52 | 115,690 | 2012-03-13 08:58:23 | https://stackoverflow.com/q/6071280 | https://stackoverflow.com/a/6100733 | <p>Though a couple of correct answers have already been provided, I want to point out that there are several more techniques one may use to see where you are in Subversion. Here is the complete list:</p>
<ol>
<li><strong>Windows Explorer</strong> -- Windows Explorer has the flexibility to add columns from a large set ... | <p>Though a couple of correct answers have already been provided, I want to point out that there are several more techniques one may use to see where you are in Subversion. Here is the complete list:</p> <ol> <li><strong>Windows Explorer</strong> -- Windows Explorer has the flexibility to add columns from a large set ... | 63, 656 | svn, tortoisesvn | <h1>Subversion switch: How can I see which branch is current?</h1>
<p>We're experimenting with Subversion as a possible replacement of our current <a href="http://en.wikipedia.org/wiki/StarTeam">Starteam 2005 SCM</a>, (so our SVN knowledge is limited at the moment :-)).</p>
<p>I've been experimenting with the switch c... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,162 | svn | # Subversion switch: How can I see which branch is current?
We're experimenting with Subversion as a possible replacement of our current [Starteam 2005 SCM](http://en.wikipedia.org/wiki/StarTeam), (so our SVN knowledge is limited at the moment :-)).
I've been experimenting with the switch command (using the TortoiseS... | Though a couple of correct answers have already been provided, I want to point out that there are several more techniques one may use to see where you are in Subversion. Here is the complete list:
1. **Windows Explorer** -- Windows Explorer has the flexibility to add columns from a large set of choices beyond the stan... |
182492 | How do I configure the TortoiseSVN 'Global ignore pattern' properly? | 46 | 2008-10-08 12:30:17 | <p>I would like TortoiseSVN (1.5.3) to ignore certain folders, their contents and certain other files wherever they might appear in my directory hierarchy but I cannot get the global ignore string right.</p>
<p>Whatever I do, it either adds to much or ignores too much</p>
<p>What is the correct 'Global ignore pattern... | 50,764 | 11,356 | 2020-01-03 14:48:57 | 182,508 | 51 | 2008-10-08 12:34:48 | 6,721 | 2020-01-03 14:48:57 | https://stackoverflow.com/q/182492 | https://stackoverflow.com/a/182508 | <p>Currently I have the following in my Global Ignore Pattern:<br></p>
<pre><code>bin obj CVS .cvsignore *.user *.suo Debug Release *.pdb test.* Thumbs.db
</code></pre>
<p>Works really well to ignore several hidden or temp files/folders....</p>
<p>So for your specific requirements:</p>
<ul>
<li>Folders: <code>bin o... | <p>Currently I have the following in my Global Ignore Pattern:<br></p> <pre><code>bin obj CVS .cvsignore *.user *.suo Debug Release *.pdb test.* Thumbs.db </code></pre> <p>Works really well to ignore several hidden or temp files/folders....</p> <p>So for your specific requirements:</p> <ul> <li>Folders: <code>bin o... | 63, 656, 19160 | svn, svnignore, tortoisesvn | <h1>How do I configure the TortoiseSVN 'Global ignore pattern' properly?</h1>
<p>I would like TortoiseSVN (1.5.3) to ignore certain folders, their contents and certain other files wherever they might appear in my directory hierarchy but I cannot get the global ignore string right.</p>
<p>Whatever I do, it either adds ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,163 | svn | # How do I configure the TortoiseSVN 'Global ignore pattern' properly?
I would like TortoiseSVN (1.5.3) to ignore certain folders, their contents and certain other files wherever they might appear in my directory hierarchy but I cannot get the global ignore string right.
Whatever I do, it either adds to much or ignor... | Currently I have the following in my Global Ignore Pattern:
```
bin obj CVS .cvsignore *.user *.suo Debug Release *.pdb test.* Thumbs.db
```
Works really well to ignore several hidden or temp files/folders....
So for your specific requirements:
- Folders: `bin obj release compile`
- Files: `*.bak *.user *.suo`
I w... |
13859659 | SVN commit command | 36 | 2012-12-13 12:14:48 | <p>I need to commit the folder after adding some new files to that folder. When I tried this in <a href="http://en.wikipedia.org/wiki/TortoiseSVN" rel="noreferrer">TortoiseSVN</a>, it was working properly (committed successfully), but while trying this by using the <code>svn commit</code> command it did not commit the ... | 167,278 | 1,553,605 | 2022-01-28 06:38:25 | 18,303,054 | 51 | 2013-08-18 19:51:21 | 1,893,096 | 2022-01-28 06:38:25 | https://stackoverflow.com/q/13859659 | https://stackoverflow.com/a/18303054 | <p>To add a file/folder to the project, a good way is:</p>
<p>First of all add your files to /path/to/your/project/my/added/files, and then run following commands:</p>
<pre><code>svn cleanup /path/to/your/project
svn add --force /path/to/your/project/*
svn cleanup /path/to/your/project
svn commit /path/to/your/proje... | <p>To add a file/folder to the project, a good way is:</p> <p>First of all add your files to /path/to/your/project/my/added/files, and then run following commands:</p> <pre><code>svn cleanup /path/to/your/project svn add --force /path/to/your/project/* svn cleanup /path/to/your/project svn commit /path/to/your/proje... | 63, 656 | svn, tortoisesvn | <h1>SVN commit command</h1>
<p>I need to commit the folder after adding some new files to that folder. When I tried this in <a href="http://en.wikipedia.org/wiki/TortoiseSVN" rel="noreferrer">TortoiseSVN</a>, it was working properly (committed successfully), but while trying this by using the <code>svn commit</code> co... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,164 | svn | # SVN commit command
I need to commit the folder after adding some new files to that folder. When I tried this in [TortoiseSVN](http://en.wikipedia.org/wiki/TortoiseSVN), it was working properly (committed successfully), but while trying this by using the `svn commit` command it did not commit the folder.
Steps I hav... | To add a file/folder to the project, a good way is:
First of all add your files to /path/to/your/project/my/added/files, and then run following commands:
```
svn cleanup /path/to/your/project
svn add --force /path/to/your/project/*
svn cleanup /path/to/your/project
svn commit /path/to/your/project -m 'Adding a fil... |
8866035 | Unable to do an SVN dump -- Error E720002 and format errors | 34 | 2012-01-14 22:51:36 | <p>I'm new to SVN, so forgive the possible straightforward problem. I'm trying to do an Subversion dump of one of my projects:</p>
<pre><code>svnadmin dump C:\code\project1 -r 9 > repo.dmp
</code></pre>
<p>Unfortunately I'm getting this error:</p>
<pre><code>svnadmin: E720002: Can't open file 'project1\format': ... | 30,883 | 286,791 | 2012-01-23 13:52:19 | 8,867,031 | 51 | 2012-01-15 02:07:10 | 23,264 | 2012-01-23 13:52:19 | https://stackoverflow.com/q/8866035 | https://stackoverflow.com/a/8867031 | <p><strong>svnadmin dump</strong> is for working on the repository(server side), not the working copy (client side)
The errormessage about format is misleading as it searches for the format file in repository and finds a file with same name in your workingcopy.</p>
<p>If you are interested to get a full backup of your... | <p><strong>svnadmin dump</strong> is for working on the repository(server side), not the working copy (client side) The errormessage about format is misleading as it searches for the format file in repository and finds a file with same name in your workingcopy.</p> <p>If you are interested to get a full backup of your... | 63, 656 | svn, tortoisesvn | <h1>Unable to do an SVN dump -- Error E720002 and format errors</h1>
<p>I'm new to SVN, so forgive the possible straightforward problem. I'm trying to do an Subversion dump of one of my projects:</p>
<pre><code>svnadmin dump C:\code\project1 -r 9 > repo.dmp
</code></pre>
<p>Unfortunately I'm getting this error:</... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,165 | svn | # Unable to do an SVN dump -- Error E720002 and format errors
I'm new to SVN, so forgive the possible straightforward problem. I'm trying to do an Subversion dump of one of my projects:
```
svnadmin dump C:\code\project1 -r 9 > repo.dmp
```
Unfortunately I'm getting this error:
```
svnadmin: E720002: Can't open fil... | **svnadmin dump** is for working on the repository(server side), not the working copy (client side)
The errormessage about format is misleading as it searches for the format file in repository and finds a file with same name in your workingcopy.
If you are interested to get a full backup of your repository you can use... |
3511348 | How to remove a file with @ in it's name from svn in command line? | 17 | 2010-08-18 11:02:15 | <p>With the new iPhone 2x files i've stumbled uppon this problem... </p>
| 4,563 | 2,566 | 2014-09-17 23:14:40 | 3,511,546 | 51 | 2010-08-18 11:28:42 | 162,650 | 2014-09-17 23:14:40 | https://stackoverflow.com/q/3511348 | https://stackoverflow.com/a/3511546 | <p>You need to add a "@" sign in the end to get SVN to process the file. </p>
<p>For example, if you had a file called foo@2x.png which you want to add to SVN, you would type:</p>
<pre><code>svn add foo@2x.png@
</code></pre>
<p>If you have lots of files with the "@" symbol in their name that you want to process in a... | <p>You need to add a "@" sign in the end to get SVN to process the file. </p> <p>For example, if you had a file called foo@2x.png which you want to add to SVN, you would type:</p> <pre><code>svn add foo@2x.png@ </code></pre> <p>If you have lots of files with the "@" symbol in their name that you want to process in a... | 63 | svn | <h1>How to remove a file with @ in it's name from svn in command line?</h1>
<p>With the new iPhone 2x files i've stumbled uppon this problem... </p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,166 | svn | # How to remove a file with @ in it's name from svn in command line?
With the new iPhone 2x files i've stumbled uppon this problem... | You need to add a "@" sign in the end to get SVN to process the file.
For example, if you had a file called foo@2x.png which you want to add to SVN, you would type:
```
svn add foo@2x.png@
```
If you have lots of files with the "@" symbol in their name that you want to process in a batch (i.e. use * wildcard), you c... |
5136898 | Checkout SVN svn+ssh repo with subversive in Eclipse Helios | 27 | 2011-02-27 23:43:27 | <p>from my computer (Mac OS X Leopard) through shell I can check out without problem a remote SVN repo. I already established ssh keys and all that stuff. Now I installed eclipse helios on mac and the subversive pluging. I find no way yo make it work with the svn+ssh repo, could you point me to some good tutorial? MY g... | 37,358 | 171,546 | 2019-07-23 18:39:32 | 5,140,066 | 50 | 2011-02-28 09:20:20 | 587,220 | 2014-03-18 09:10:36 | https://stackoverflow.com/q/5136898 | https://stackoverflow.com/a/5140066 | <ul>
<li>Go to <code>Help > Install New Software...</code></li>
<li>Paste in the URL<br>
for juno: <a href="http://community.polarion.com/projects/subversive/download/eclipse/3.0/juno-site/" rel="noreferrer">http://community.polarion.com/projects/subversive/download/eclipse/3.0/juno-site/</a><br>
for kepler: <a href... | <ul> <li>Go to <code>Help > Install New Software...</code></li> <li>Paste in the URL<br> for juno: <a href="http://community.polarion.com/projects/subversive/download/eclipse/3.0/juno-site/" rel="noreferrer">http://community.polarion.com/projects/subversive/download/eclipse/3.0/juno-site/</a><br> for kepler: <a href... | 53, 63, 3311, 54098 | eclipse, javahl, subversive, svn | <h1>Checkout SVN svn+ssh repo with subversive in Eclipse Helios</h1>
<p>from my computer (Mac OS X Leopard) through shell I can check out without problem a remote SVN repo. I already established ssh keys and all that stuff. Now I installed eclipse helios on mac and the subversive pluging. I find no way yo make it work ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,168 | svn | # Checkout SVN svn+ssh repo with subversive in Eclipse Helios
from my computer (Mac OS X Leopard) through shell I can check out without problem a remote SVN repo. I already established ssh keys and all that stuff. Now I installed eclipse helios on mac and the subversive pluging. I find no way yo make it work with the ... | - Go to `Help > Install New Software...`
- Paste in the URL
for juno: <http://community.polarion.com/projects/subversive/download/eclipse/3.0/juno-site/>
for kepler: <http://community.polarion.com/projects/subversive/download/eclipse/3.0/kepler-site/>
- Select the connector you wish to install (I usually go wit... |
984773 | Clearing Eclipse Subversion password | 27 | 2009-06-12 02:49:09 | <p>Eclipse/Aptana seems to remember my password that I use to access my SVN repositories. Is there a way I can clear the stored passwords?</p>
| 66,989 | 21,406 | 2018-07-26 07:45:39 | 4,968,626 | 50 | 2011-02-11 11:46:17 | 146,182 | 2011-02-11 11:46:17 | https://stackoverflow.com/q/984773 | https://stackoverflow.com/a/4968626 | <p>just want to share,
In windows 7 machine, the password is saved at:</p>
<pre><code>C:\Users\[username]\AppData\Roaming\Subversion\auth\svn.simple
</code></pre>
| <p>just want to share, In windows 7 machine, the password is saved at:</p> <pre><code>C:\Users\[username]\AppData\Roaming\Subversion\auth\svn.simple </code></pre> | 53, 63, 220 | eclipse, passwords, svn | <h1>Clearing Eclipse Subversion password</h1>
<p>Eclipse/Aptana seems to remember my password that I use to access my SVN repositories. Is there a way I can clear the stored passwords?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,169 | svn | # Clearing Eclipse Subversion password
Eclipse/Aptana seems to remember my password that I use to access my SVN repositories. Is there a way I can clear the stored passwords? | just want to share,
In windows 7 machine, the password is saved at:
```
C:\Users\[username]\AppData\Roaming\Subversion\auth\svn.simple
``` |
7673594 | Make an existing folder into a repository | 21 | 2011-10-06 11:27:36 | <p>I've decided that modifying files directly in notepad is probably dangerous and it was about time to have some proper source control (I am quite new to source control). I have installed VisualSVN server on my server and TortoiseSVN on my client machine. I can create new folders fine, check them our etc. However, on ... | 34,180 | 457,024 | 2022-08-15 13:54:42 | 7,674,380 | 50 | 2011-10-06 12:42:48 | 150,978 | 2022-08-15 13:54:42 | https://stackoverflow.com/q/7673594 | https://stackoverflow.com/a/7674380 | <p>There is a simple solution for checking in an existing directory structure:</p>
<ol>
<li>Open the repository browser of TortoiseSVN (or any other SVN client you prefer) and create a new directory for the project you want to check-in.</li>
<li>Check-out this newly created empty directory from SVN somewhere</li>
<li>O... | <p>There is a simple solution for checking in an existing directory structure:</p> <ol> <li>Open the repository browser of TortoiseSVN (or any other SVN client you prefer) and create a new directory for the project you want to check-in.</li> <li>Check-out this newly created empty directory from SVN somewhere</li> <li>O... | 63, 656, 11603 | svn, tortoisesvn, visualsvn-server | <h1>Make an existing folder into a repository</h1>
<p>I've decided that modifying files directly in notepad is probably dangerous and it was about time to have some proper source control (I am quite new to source control). I have installed VisualSVN server on my server and TortoiseSVN on my client machine. I can create... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,170 | svn | # Make an existing folder into a repository
I've decided that modifying files directly in notepad is probably dangerous and it was about time to have some proper source control (I am quite new to source control). I have installed VisualSVN server on my server and TortoiseSVN on my client machine. I can create new fold... | There is a simple solution for checking in an existing directory structure:
1. Open the repository browser of TortoiseSVN (or any other SVN client you prefer) and create a new directory for the project you want to check-in.
2. Check-out this newly created empty directory from SVN somewhere
3. Open the checked-out dire... |
36597286 | <PBXResourcesBuildPhase UUID=..> attempted to initialize an object with an unknown UUID | 46 | 2016-04-13 11:41:27 | <p>I have taken SVN check-in for a project. Thereafter I have installed pod via <em>terminal</em>. After installation of pod there are few warning stating</p>
<pre><code> <PBXResourcesBuildPhase UUID=...> attempted to initialise an
object with an unknown UUID.
</code></pre>
<p><a href="https://i.sstatic... | 37,107 | 1,753,005 | 2022-11-09 12:00:45 | 39,080,112 | 49 | 2016-08-22 12:53:17 | 301,513 | 2019-09-04 15:30:20 | https://stackoverflow.com/q/36597286 | https://stackoverflow.com/a/39080112 | <p>The reason that happened in my case was some developer updated a pod A while I installed a new pod B (without updated pod A). So when I merged his codes I got the warning.</p>
<p>An easy way to fix this is to </p>
<pre><code>1. remove libPods.a from General->Linked Frameworks and libraries
2. run `pod install`... | <p>The reason that happened in my case was some developer updated a pod A while I installed a new pod B (without updated pod A). So when I merged his codes I got the warning.</p> <p>An easy way to fix this is to </p> <pre><code>1. remove libPods.a from General->Linked Frameworks and libraries 2. run `pod install`... | 63, 908, 77741, 116483 | cocoapods, svn, xcode, xcode7.2 | <h1><PBXResourcesBuildPhase UUID=..> attempted to initialize an object with an unknown UUID</h1>
<p>I have taken SVN check-in for a project. Thereafter I have installed pod via <em>terminal</em>. After installation of pod there are few warning stating</p>
<pre><code> <PBXResourcesBuildPhase UUID=...> attempte... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,171 | svn | # attempted to initialize an object with an unknown UUID
I have taken SVN check-in for a project. Thereafter I have installed pod via *terminal*. After installation of pod there are few warning stating
```
<PBXResourcesBuildPhase UUID=...> attempted to initialise an
object with an unknown UUID.
```
[ SVN repository for storing my school projects and homework, and to allow easy transferring between school and home.
Its default directories it creates are:
> <https://simucal-projects.googlecode.com/sv... | You have two options for this. The one you already mentioned, and that is to have a trunk for each project (option 1):
```
https://simucal-projects.googlecode.com/svn/projectA/trunk/
https://simucal-projects.googlecode.com/svn/projectA/tags/
https://simucal-projects.googlecode.com/svn/projectA/branches/
https://simuc... |
13297157 | Best ways to deal with properties values in XML file in Spring, Maven and Eclipses | 24 | 2012-11-08 20:22:02 | <p>I am working on a Spring WebFlow project which has a lot of property values in XML files, as any Spring programmer knows. I have database user names, password, URLs, etc. </p>
<p>We are using Eclipse with Spring WebFlow and Maven. We are trying to have an SA do the builds but the SA does not want to go into the XML... | 102,309 | 1,652,096 | 2020-12-23 14:22:58 | 13,297,686 | 48 | 2012-11-08 20:57:40 | 873,875 | 2016-10-24 11:03:27 | https://stackoverflow.com/q/13297157 | https://stackoverflow.com/a/13297686 | <p>Most SA are more willing and confident to deal with <code>.properties</code> file rather than <code>.xml</code>.</p>
<p>Spring provide <a href="http://static.springsource.org/spring/docs/3.0.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html" rel="noreferrer">PropertyPlaceholderConfig... | <p>Most SA are more willing and confident to deal with <code>.properties</code> file rather than <code>.xml</code>.</p> <p>Spring provide <a href="http://static.springsource.org/spring/docs/3.0.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html" rel="noreferrer">PropertyPlaceholderConfig... | 53, 63, 1211, 7027, 41127 | eclipse, maven, spring, spring-mvc, svn | <h1>Best ways to deal with properties values in XML file in Spring, Maven and Eclipses</h1>
<p>I am working on a Spring WebFlow project which has a lot of property values in XML files, as any Spring programmer knows. I have database user names, password, URLs, etc. </p>
<p>We are using Eclipse with Spring WebFlow and ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,177 | svn | # Best ways to deal with properties values in XML file in Spring, Maven and Eclipses
I am working on a Spring WebFlow project which has a lot of property values in XML files, as any Spring programmer knows. I have database user names, password, URLs, etc.
We are using Eclipse with Spring WebFlow and Maven. We are try... | Most SA are more willing and confident to deal with `.properties` file rather than `.xml`.
Spring provide [PropertyPlaceholderConfigurer](http://static.springsource.org/spring/docs/3.0.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html) to let you define everything into one or several `.... |
1401951 | Is it possible to link SVN repository files so that a file is actually a reference to another repository's file? | 46 | 2009-09-09 20:38:34 | <p>I can see some potential difficulties with this concept but the idea is: </p>
<p>I change a file in Repository A and commit, Repository B has a file that is a link to a file in Repository A, I click update on the file in my working copy for repository B, and i receive the updated file from repository A.</p>
| 66,682 | 72,871 | 2021-05-17 11:24:43 | 1,401,963 | 47 | 2009-09-09 20:41:33 | 140,740 | 2020-04-29 19:42:59 | https://stackoverflow.com/q/1401951 | https://stackoverflow.com/a/1401963 | <h2>Yes, for directories anyway</h2>
<p>See <a href="http://svnbook.red-bean.com/en/1.8/svn.advanced.externals.html" rel="nofollow noreferrer">this section on svn externals</a>. The <code>svn:externals</code> property is set on a versioned directory; its value is typically another versioned directory in a repository (... | <h2>Yes, for directories anyway</h2> <p>See <a href="http://svnbook.red-bean.com/en/1.8/svn.advanced.externals.html" rel="nofollow noreferrer">this section on svn externals</a>. The <code>svn:externals</code> property is set on a versioned directory; its value is typically another versioned directory in a repository (... | 63 | svn | <h1>Is it possible to link SVN repository files so that a file is actually a reference to another repository's file?</h1>
<p>I can see some potential difficulties with this concept but the idea is: </p>
<p>I change a file in Repository A and commit, Repository B has a file that is a link to a file in Repository A, I c... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,178 | svn | # Is it possible to link SVN repository files so that a file is actually a reference to another repository's file?
I can see some potential difficulties with this concept but the idea is:
I change a file in Repository A and commit, Repository B has a file that is a link to a file in Repository A, I click update on th... | ## Yes, for directories anyway
See [this section on svn externals](http://svnbook.red-bean.com/en/1.8/svn.advanced.externals.html). The `svn:externals` property is set on a versioned directory; its value is typically another versioned directory in a repository (possibly the same one) of your organization. They act in ... |
2920440 | Maintaining file permissions across SVN updates? | 34 | 2010-05-27 10:54:40 | <p>I have a series of python scripts with execute permissions in Linux. They are stored in SVN.</p>
<p>If I then run <code>svn up</code> to update them, the overwritten files are back to 644 - ie no execute permissions for anyone.</p>
<p>Yes I could just script it to <code>chmod +x *</code> afterwards, but surely th... | 15,195 | 175,051 | 2013-10-15 10:41:44 | 2,920,464 | 47 | 2010-05-27 10:58:17 | 104,349 | 2010-05-27 10:58:17 | https://stackoverflow.com/q/2920440 | https://stackoverflow.com/a/2920464 | <p>You need to set the svn:executable property on the file.</p>
<pre><code>svn propset svn:executable true <filename>
</code></pre>
| <p>You need to set the svn:executable property on the file.</p> <pre><code>svn propset svn:executable true <filename> </code></pre> | 58, 63, 456, 2120 | file-permissions, linux, svn, version-control | <h1>Maintaining file permissions across SVN updates?</h1>
<p>I have a series of python scripts with execute permissions in Linux. They are stored in SVN.</p>
<p>If I then run <code>svn up</code> to update them, the overwritten files are back to 644 - ie no execute permissions for anyone.</p>
<p>Yes I could just scri... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,179 | svn | # Maintaining file permissions across SVN updates?
I have a series of python scripts with execute permissions in Linux. They are stored in SVN.
If I then run `svn up` to update them, the overwritten files are back to 644 - ie no execute permissions for anyone.
Yes I could just script it to `chmod +x *` afterwards, b... | You need to set the svn:executable property on the file.
```
svn propset svn:executable true <filename>
``` |
4926896 | SVN: how to compare working copy with repository revision? | 31 | 2011-02-07 21:36:22 | <p>I want see only the list of files that have been modified, added, etc., <strong>not the content</strong> (<code>svn diff</code> outputs that), only the list of files like <code>svn status</code>.</p>
<p><code>svn diff -r HEAD</code> dumps me tons of information, which is hard to understand quickly.</p>
<p><code>sv... | 69,960 | 554,823 | 2016-12-10 14:01:03 | 4,926,945 | 47 | 2011-02-07 21:40:46 | 126,769 | 2011-02-07 21:40:46 | https://stackoverflow.com/q/4926896 | https://stackoverflow.com/a/4926945 | <p>Try </p>
<pre><code>svn status --show-updates
</code></pre>
<p>The <code>-u</code> (or <code>--show-updates</code>) option to <code>svn status</code> causes svn to contact the repository and show stuff that's changed in the repository - is that enough for you ? Depending on what you need, you might want the <code>... | <p>Try </p> <pre><code>svn status --show-updates </code></pre> <p>The <code>-u</code> (or <code>--show-updates</code>) option to <code>svn status</code> causes svn to contact the repository and show stuff that's changed in the repository - is that enough for you ? Depending on what you need, you might want the <code>... | 63, 456, 7330 | repository, svn, version-control | <h1>SVN: how to compare working copy with repository revision?</h1>
<p>I want see only the list of files that have been modified, added, etc., <strong>not the content</strong> (<code>svn diff</code> outputs that), only the list of files like <code>svn status</code>.</p>
<p><code>svn diff -r HEAD</code> dumps me tons o... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,180 | svn | # SVN: how to compare working copy with repository revision?
I want see only the list of files that have been modified, added, etc., **not the content** (`svn diff` outputs that), only the list of files like `svn status`.
`svn diff -r HEAD` dumps me tons of information, which is hard to understand quickly.
`svn stat... | Try
```
svn status --show-updates
```
The `-u` (or `--show-updates`) option to `svn status` causes svn to contact the repository and show stuff that's changed in the repository - is that enough for you ? Depending on what you need, you might want the `-q` or `--verbose` flag too |
677252 | Python SVN bindings for Windows | 21 | 2009-03-24 12:58:01 | <p>Where can I find precompiled Python SWIG SVN bindings for Windows?</p>
| 18,371 | 6,013 | 2016-10-21 11:24:36 | 677,345 | 47 | 2009-03-24 13:18:35 | 6,491 | 2016-09-05 08:13:00 | https://stackoverflow.com/q/677252 | https://stackoverflow.com/a/677345 | <p>The (old) <a href="http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=8100" rel="nofollow noreferrer">Windows binaries</a> page at tigris.org contains an installer for <em>python bindings for SVN</em>. View the source for the SWIG bindings at <a href="http://svn.apache.org/viewvc/subversion/trunk/sub... | <p>The (old) <a href="http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=8100" rel="nofollow noreferrer">Windows binaries</a> page at tigris.org contains an installer for <em>python bindings for SVN</em>. View the source for the SWIG bindings at <a href="http://svn.apache.org/viewvc/subversion/trunk/sub... | 16, 63, 64, 1451, 18628 | precompiled, python, svn, swig, windows | <h1>Python SVN bindings for Windows</h1>
<p>Where can I find precompiled Python SWIG SVN bindings for Windows?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,182 | svn | # Python SVN bindings for Windows
Where can I find precompiled Python SWIG SVN bindings for Windows? | The (old) [Windows binaries](http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=8100) page at tigris.org contains an installer for *python bindings for SVN*. View the source for the SWIG bindings at [/trunk/subversion/bindings/swig/python](http://svn.apache.org/viewvc/subversion/trunk/subversion/binding... |
2254552 | Subversion - What are the differences between the SVN checkout and SVN update commands? | 50 | 2010-02-12 19:31:09 | <p>I understand that the "SVN checkout" command will do the initial get of file(s) from the Subversion repository and bring them locally to your working directory/copy and that the "SVN update" command will get changes to file(s) from the repository if changes have been made by others.</p>
<p>It seems to me though tha... | 59,186 | 258,870 | 2017-02-21 05:58:31 | 2,254,602 | 46 | 2010-02-12 19:40:02 | 209,856 | 2010-02-12 19:40:02 | https://stackoverflow.com/q/2254552 | https://stackoverflow.com/a/2254602 | <p>As I see it, the big difference is that <code>checkout</code> <b>creates</b> a working copy, whereas <code>update</code> brings down changes to an <b>existing</b> working copy.</p>
| <p>As I see it, the big difference is that <code>checkout</code> <b>creates</b> a working copy, whereas <code>update</code> brings down changes to an <b>existing</b> working copy.</p> | 63, 656 | svn, tortoisesvn | <h1>Subversion - What are the differences between the SVN checkout and SVN update commands?</h1>
<p>I understand that the "SVN checkout" command will do the initial get of file(s) from the Subversion repository and bring them locally to your working directory/copy and that the "SVN update" command will get changes to f... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,183 | svn | # Subversion - What are the differences between the SVN checkout and SVN update commands?
I understand that the "SVN checkout" command will do the initial get of file(s) from the Subversion repository and bring them locally to your working directory/copy and that the "SVN update" command will get changes to file(s) fr... | As I see it, the big difference is that `checkout` **creates** a working copy, whereas `update` brings down changes to an **existing** working copy. |
1044649 | How do I properly remove an svn:externals and replace it with a local (non-external) copy of the same directory? | 33 | 2009-06-25 15:39:21 | <p>I realize there are similar questions on this topic, but I still cannot find the answer for my specific case. I have a project that I inherited from another team's repo. We did an "svn switch --relocate" to redirect our checked out copies to our server, instead of theirs. But, they still have an svn:externals for a ... | 26,493 | 577 | 2021-09-27 21:52:52 | 1,044,707 | 46 | 2009-06-25 15:49:41 | 60,783 | 2009-06-25 15:49:41 | https://stackoverflow.com/q/1044649 | https://stackoverflow.com/a/1044707 | <p>In the root of your working copy:</p>
<p><code>svn propedit svn:externals .</code></p>
<p>You should see a file in your editor of choice that has lines like this:</p>
<pre><code>path/to/extenal http://url/of/repo
</code></pre>
<p>If you remove that line, then run a commit/update, it should remove the external de... | <p>In the root of your working copy:</p> <p><code>svn propedit svn:externals .</code></p> <p>You should see a file in your editor of choice that has lines like this:</p> <pre><code>path/to/extenal http://url/of/repo </code></pre> <p>If you remove that line, then run a commit/update, it should remove the external de... | 63 | svn | <h1>How do I properly remove an svn:externals and replace it with a local (non-external) copy of the same directory?</h1>
<p>I realize there are similar questions on this topic, but I still cannot find the answer for my specific case. I have a project that I inherited from another team's repo. We did an "svn switch --r... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,185 | svn | # How do I properly remove an svn:externals and replace it with a local (non-external) copy of the same directory?
I realize there are similar questions on this topic, but I still cannot find the answer for my specific case. I have a project that I inherited from another team's repo. We did an "svn switch --relocate" ... | In the root of your working copy:
`svn propedit svn:externals .`
You should see a file in your editor of choice that has lines like this:
```
path/to/extenal http://url/of/repo
```
If you remove that line, then run a commit/update, it should remove the external definition from that path, and unlock the path.
You *... |
192454 | How can KDiff3 be used properly with TortoiseSVN to resolve conflicts? | 31 | 2008-10-10 17:56:32 | <p>I have TortoiseSVN set up to use KDiff3 as the conflict resolution tool (I find it shows more information useful to the merge than the built-in TortoiseMerge does).</p>
<p>When I open a file with Tortoise's "Edit Conflicts" command it shows me the three files and I have to select "Merge->Merge Current File" manuall... | 11,824 | 4,790 | 2019-01-16 17:24:30 | 200,657 | 46 | 2008-10-14 10:28:08 | 15,785 | 2008-10-14 10:28:08 | https://stackoverflow.com/q/192454 | https://stackoverflow.com/a/200657 | <p>Mine is a bit longer:</p>
<pre><code>"C:\Program Files\KDiff3\kdiff3.exe" %base %mine %theirs -o %merged --L1 Base --L2 Mine --L3 Theirs
</code></pre>
| <p>Mine is a bit longer:</p> <pre><code>"C:\Program Files\KDiff3\kdiff3.exe" %base %mine %theirs -o %merged --L1 Base --L2 Mine --L3 Theirs </code></pre> | 63, 606, 656, 3146 | conflict, diff, svn, tortoisesvn | <h1>How can KDiff3 be used properly with TortoiseSVN to resolve conflicts?</h1>
<p>I have TortoiseSVN set up to use KDiff3 as the conflict resolution tool (I find it shows more information useful to the merge than the built-in TortoiseMerge does).</p>
<p>When I open a file with Tortoise's "Edit Conflicts" command it s... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,186 | svn | # How can KDiff3 be used properly with TortoiseSVN to resolve conflicts?
I have TortoiseSVN set up to use KDiff3 as the conflict resolution tool (I find it shows more information useful to the merge than the built-in TortoiseMerge does).
When I open a file with Tortoise's "Edit Conflicts" command it shows me the thre... | Mine is a bit longer:
```
"C:\Program Files\KDiff3\kdiff3.exe" %base %mine %theirs -o %merged --L1 Base --L2 Mine --L3 Theirs
``` |
9592081 | Convert Eclipse project type from general to Java | 29 | 2012-03-06 21:18:54 | <p>I'm taking over another team's project and am experiencing some bizarre Eclipse issues.</p>
<p>I'm using Subversive as my plugin, and when I go to check the trunk out it brings me to a standard "Check Out As" dialog where it allows me to select the check out method, and the only one that works for me (or is applica... | 61,618 | 892,029 | 2012-12-14 13:30:19 | 9,592,395 | 46 | 2012-03-06 21:42:46 | 1,247,163 | 2012-03-06 21:42:46 | https://stackoverflow.com/q/9592081 | https://stackoverflow.com/a/9592395 | <p>Under <code>Project Properties -> Project Facets -> Convert to faceted form...</code> you can select <code>Java</code> - this will add the Java functionalities to your project. There you can also add other facets like <code>Dynamic Web Module</code> if necessary.</p>
<p>From what you have written the project was ch... | <p>Under <code>Project Properties -> Project Facets -> Convert to faceted form...</code> you can select <code>Java</code> - this will add the Java functionalities to your project. There you can also add other facets like <code>Dynamic Web Module</code> if necessary.</p> <p>From what you have written the project was ch... | 17, 53, 63, 3311 | eclipse, java, subversive, svn | <h1>Convert Eclipse project type from general to Java</h1>
<p>I'm taking over another team's project and am experiencing some bizarre Eclipse issues.</p>
<p>I'm using Subversive as my plugin, and when I go to check the trunk out it brings me to a standard "Check Out As" dialog where it allows me to select the check ou... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,187 | svn | # Convert Eclipse project type from general to Java
I'm taking over another team's project and am experiencing some bizarre Eclipse issues.
I'm using Subversive as my plugin, and when I go to check the trunk out it brings me to a standard "Check Out As" dialog where it allows me to select the check out method, and th... | Under `Project Properties -> Project Facets -> Convert to faceted form...` you can select `Java` - this will add the Java functionalities to your project. There you can also add other facets like `Dynamic Web Module` if necessary.
From what you have written the project was checked out correctly. The option `Check out ... |
96597 | How do I Upgrade to Subversion 1.5 On CentOS 5? | 23 | 2008-09-18 20:32:37 | <p>My development server (CentOS 5) is running Subversion 1.4.2, and I wish to upgrade it to 1.5. I have read in various blogs and documents scattered around the web that this may be done by using RPMForge. I have followed the instructions found on <a href="http://wiki.centos.org/AdditionalResources/Repositories/RPMF... | 31,096 | 5,570 | 2015-04-20 04:50:57 | 97,106 | 46 | 2008-09-18 21:21:05 | 10,011 | 2008-09-19 10:34:45 | https://stackoverflow.com/q/96597 | https://stackoverflow.com/a/97106 | <p>What you are trying to do is to replace a "core" package (one which is
contained in the CentOS repository) with a newer package from a "3rd
party" repository (RPMForge), which is what the priorities plugin is
designed to prevent.</p>
<p>The RPMForge repository contains both additional packages not found in
CentOS, ... | <p>What you are trying to do is to replace a "core" package (one which is contained in the CentOS repository) with a newer package from a "3rd party" repository (RPMForge), which is what the priorities plugin is designed to prevent.</p> <p>The RPMForge repository contains both additional packages not found in CentOS, ... | 58, 63, 456, 2091, 4956 | centos, centos5, linux, svn, version-control | <h1>How do I Upgrade to Subversion 1.5 On CentOS 5?</h1>
<p>My development server (CentOS 5) is running Subversion 1.4.2, and I wish to upgrade it to 1.5. I have read in various blogs and documents scattered around the web that this may be done by using RPMForge. I have followed the instructions found on <a href="htt... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,188 | svn | # How do I Upgrade to Subversion 1.5 On CentOS 5?
My development server (CentOS 5) is running Subversion 1.4.2, and I wish to upgrade it to 1.5. I have read in various blogs and documents scattered around the web that this may be done by using RPMForge. I have followed the instructions found on [CentOS Wiki](http://wi... | What you are trying to do is to replace a "core" package (one which is
contained in the CentOS repository) with a newer package from a "3rd
party" repository (RPMForge), which is what the priorities plugin is
designed to prevent.
The RPMForge repository contains both additional packages not found in
CentOS, as well as... |
1160 | Use SVN Revision to label build in CCNET | 42 | 2008-08-04 11:37:24 | <p>I am using CCNET on a sample project with SVN as my source control. CCNET is configured to create a build on every check in. CCNET uses MSBuild to build the source code.</p>
<p>I would like to use the latest revision number to generate <code>AssemblyInfo.cs</code> while compiling.
How can I retrieve the latest revi... | 19,042 | 120 | 2017-12-22 18:59:19 | 975,299 | 45 | 2009-06-10 12:37:30 | 3,205 | 2010-09-21 15:30:00 | https://stackoverflow.com/q/1160 | https://stackoverflow.com/a/975299 | <p>CruiseControl.Net 1.4.4 has now an <a href="http://confluence.public.thoughtworks.org/display/CCNET/Assembly+Version+Labeller" rel="noreferrer">Assembly Version Labeller</a>, which generates version numbers compatible with .Net assembly properties.</p>
<p>In my project I have it configured as:</p>
<pre><code><l... | <p>CruiseControl.Net 1.4.4 has now an <a href="http://confluence.public.thoughtworks.org/display/CCNET/Assembly+Version+Labeller" rel="noreferrer">Assembly Version Labeller</a>, which generates version numbers compatible with .Net assembly properties.</p> <p>In my project I have it configured as:</p> <pre><code><l... | 63, 264, 265 | cruisecontrol.net, msbuild, svn | <h1>Use SVN Revision to label build in CCNET</h1>
<p>I am using CCNET on a sample project with SVN as my source control. CCNET is configured to create a build on every check in. CCNET uses MSBuild to build the source code.</p>
<p>I would like to use the latest revision number to generate <code>AssemblyInfo.cs</code> w... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,189 | svn | # Use SVN Revision to label build in CCNET
I am using CCNET on a sample project with SVN as my source control. CCNET is configured to create a build on every check in. CCNET uses MSBuild to build the source code.
I would like to use the latest revision number to generate `AssemblyInfo.cs` while compiling.
How can I r... | CruiseControl.Net 1.4.4 has now an [Assembly Version Labeller](http://confluence.public.thoughtworks.org/display/CCNET/Assembly+Version+Labeller), which generates version numbers compatible with .Net assembly properties.
In my project I have it configured as:
```
<labeller type="assemblyVersionLabeller" incrementOnFa... |
4248768 | Including new files in SVN diff | 34 | 2010-11-22 18:18:10 | <p>I have a script which builds my application, uploads it to a remote machine, runs a performance test there and captures some metrics that I care about. The script creates a patch file for the local modifications I make in my workspace and shows it along with the performance numbers. This helps me compare the effect ... | 28,859 | 3,973 | 2016-02-05 09:54:42 | 4,257,210 | 45 | 2010-11-23 14:49:30 | 162,407 | 2010-11-24 01:17:14 | https://stackoverflow.com/q/4248768 | https://stackoverflow.com/a/4257210 | <p>To make <code>svn diff</code> include all the unversioned files from your local working copy you have to add these files first. <code>svn diff</code> outputs the same changeset that <code>svn commit</code> would use.</p>
<p>If you know for sure that all unversioned files should be added here's what you could do.</... | <p>To make <code>svn diff</code> include all the unversioned files from your local working copy you have to add these files first. <code>svn diff</code> outputs the same changeset that <code>svn commit</code> would use.</p> <p>If you know for sure that all unversioned files should be added here's what you could do.</... | 63, 606, 2132 | diff, patch, svn | <h1>Including new files in SVN diff</h1>
<p>I have a script which builds my application, uploads it to a remote machine, runs a performance test there and captures some metrics that I care about. The script creates a patch file for the local modifications I make in my workspace and shows it along with the performance n... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,191 | svn | # Including new files in SVN diff
I have a script which builds my application, uploads it to a remote machine, runs a performance test there and captures some metrics that I care about. The script creates a patch file for the local modifications I make in my workspace and shows it along with the performance numbers. T... | To make `svn diff` include all the unversioned files from your local working copy you have to add these files first. `svn diff` outputs the same changeset that `svn commit` would use.
If you know for sure that all unversioned files should be added here's what you could do.
Prepare a list of unversioned files by takin... |
6070424 | How to fully delete Subclipse plugin? | 31 | 2011-05-20 10:12:40 | <p>I am having trouble getting rid of Subclipse from my Eclipse configuration.</p>
<p>I made the decision to switch to Subversive due to the m2eclipse project dropping support for Subclipse.</p>
<p>So I uninstalled Subclipse and then installed Subversive using the About Eclipse -> Installation Details -> Uninstall me... | 37,562 | 283,553 | 2011-05-22 12:08:59 | 6,087,208 | 45 | 2011-05-22 09:57:07 | null | 2011-05-22 09:57:07 | https://stackoverflow.com/q/6070424 | https://stackoverflow.com/a/6087208 | <p>I had exactly the same problem. The reason is when you uninstall via eclipse, it doesn't delete the jar files from the plugin folder, the steps I did.</p>
<p>Go to folder eclipse/plugins for
avoiding any potential damage (just deleting wrong jars and get errors in other apps) list the jars from subclipse. </p>
<pr... | <p>I had exactly the same problem. The reason is when you uninstall via eclipse, it doesn't delete the jar files from the plugin folder, the steps I did.</p> <p>Go to folder eclipse/plugins for avoiding any potential damage (just deleting wrong jars and get errors in other apps) list the jars from subclipse. </p> <pr... | 53, 55, 63, 3311 | eclipse, subclipse, subversive, svn | <h1>How to fully delete Subclipse plugin?</h1>
<p>I am having trouble getting rid of Subclipse from my Eclipse configuration.</p>
<p>I made the decision to switch to Subversive due to the m2eclipse project dropping support for Subclipse.</p>
<p>So I uninstalled Subclipse and then installed Subversive using the About ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,192 | svn | # How to fully delete Subclipse plugin?
I am having trouble getting rid of Subclipse from my Eclipse configuration.
I made the decision to switch to Subversive due to the m2eclipse project dropping support for Subclipse.
So I uninstalled Subclipse and then installed Subversive using the About Eclipse -> Installation... | I had exactly the same problem. The reason is when you uninstall via eclipse, it doesn't delete the jar files from the plugin folder, the steps I did.
Go to folder eclipse/plugins for
avoiding any potential damage (just deleting wrong jars and get errors in other apps) list the jars from subclipse.
```
$ cd eclipse/p... |
7252011 | How to set up svn conflict resolution with meld? | 29 | 2011-08-31 02:42:41 | <p>I've specified <code>merge-tool-cmd = meld</code> in my Subversion config. When I go to resolve a merge conflict using option l from the presented conflict resolution options, I receive the message:</p>
<pre><code>meld: error: too many arguments (wanted 0-4, got 5)
The external merge tool exited with exit code 2
</c... | 25,967 | 383,053 | 2023-07-27 19:58:02 | 7,418,087 | 45 | 2011-09-14 14:32:54 | 420,867 | 2019-10-24 09:51:53 | https://stackoverflow.com/q/7252011 | https://stackoverflow.com/a/7418087 | <p>First a warning! It is very easy to end up losing your local edits if you get this wrong! Test test test!</p>
<p>I'm afraid the script from pmod's link does not work with svn 1.6 (current in Ubuntu 11.04). Putting together code from <a href="http://codingundertheinfluence.blogspot.com/2010/01/using-meld-as-your-ext... | <p>First a warning! It is very easy to end up losing your local edits if you get this wrong! Test test test!</p> <p>I'm afraid the script from pmod's link does not work with svn 1.6 (current in Ubuntu 11.04). Putting together code from <a href="http://codingundertheinfluence.blogspot.com/2010/01/using-meld-as-your-ext... | 63, 13630 | meld, svn | <h1>How to set up svn conflict resolution with meld?</h1>
<p>I've specified <code>merge-tool-cmd = meld</code> in my Subversion config. When I go to resolve a merge conflict using option l from the presented conflict resolution options, I receive the message:</p>
<pre><code>meld: error: too many arguments (wanted 0-4, ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,193 | svn | # How to set up svn conflict resolution with meld?
I've specified `merge-tool-cmd = meld` in my Subversion config. When I go to resolve a merge conflict using option l from the presented conflict resolution options, I receive the message:
```
meld: error: too many arguments (wanted 0-4, got 5)
The external merge tool... | First a warning! It is very easy to end up losing your local edits if you get this wrong! Test test test!
I'm afraid the script from pmod's link does not work with svn 1.6 (current in Ubuntu 11.04). Putting together code from [pmod's link](http://codingundertheinfluence.blogspot.com/2010/01/using-meld-as-your-external... |
36881132 | Checkout SVN with credentials in Jenkins pipeline? | 27 | 2016-04-27 05:36:55 | <p>How can I check out a Subversion repository that requires user credentials, via a Jenkins pipeline groovy script? It appears that the built-in <code>svn</code> command doesn't support credentials, so I tried code like this:</p>
<pre><code>node {
stage 'checkout'
withCredentials([[$class: 'UsernamePasswordMu... | 56,359 | 210,945 | 2019-12-10 09:05:56 | 36,884,491 | 45 | 2016-04-27 08:36:03 | 6,260,376 | 2017-06-27 13:10:56 | https://stackoverflow.com/q/36881132 | https://stackoverflow.com/a/36884491 | <p>You can use the <strong>Snippet Generator</strong> for <strong>General SCM</strong> step. This displays the familiar Subversion configuration options, and takes credentials as parameter as usual.</p>
<p>The Snippet Generator will produce a tad ugly representation of your parameter selections and looks something lik... | <p>You can use the <strong>Snippet Generator</strong> for <strong>General SCM</strong> step. This displays the familiar Subversion configuration options, and takes credentials as parameter as usual.</p> <p>The Snippet Generator will produce a tad ugly representation of your parameter selections and looks something lik... | 63, 849, 64999, 110984 | groovy, jenkins, jenkins-workflow, svn | <h1>Checkout SVN with credentials in Jenkins pipeline?</h1>
<p>How can I check out a Subversion repository that requires user credentials, via a Jenkins pipeline groovy script? It appears that the built-in <code>svn</code> command doesn't support credentials, so I tried code like this:</p>
<pre><code>node {
stage ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,194 | svn | # Checkout SVN with credentials in Jenkins pipeline?
How can I check out a Subversion repository that requires user credentials, via a Jenkins pipeline groovy script? It appears that the built-in `svn` command doesn't support credentials, so I tried code like this:
```
node {
stage 'checkout'
withCredentials(... | You can use the **Snippet Generator** for **General SCM** step. This displays the familiar Subversion configuration options, and takes credentials as parameter as usual.
The Snippet Generator will produce a tad ugly representation of your parameter selections and looks something like this:
```
checkout([$class: 'Subv... |
4509834 | How do I list a Subversion repository's ignore settings? | 41 | 2010-12-22 13:53:55 | <p>I have an SVN repository I set up a long time ago. I don't remember exactly what files I specified to be ignored, and I can't find documentation on how to display the ignore settings I set.</p>
<p>How can I find these settings?</p>
<p>This is on my <a href="http://en.wikipedia.org/wiki/CentOS" rel="noreferrer">Cen... | 47,803 | 246,433 | 2016-12-11 14:51:43 | 4,509,924 | 44 | 2010-12-22 14:04:14 | 404,863 | 2016-12-11 14:42:55 | https://stackoverflow.com/q/4509834 | https://stackoverflow.com/a/4509924 | <p>List all properties recursively on all files:</p>
<pre><code>svn proplist -v -R [TARGET]
</code></pre>
<p>You could also send the output in a file to find any <code>svn:ignore</code> property:</p>
<pre><code>svn proplist -v -R [TARGET] > file.log
</code></pre>
| <p>List all properties recursively on all files:</p> <pre><code>svn proplist -v -R [TARGET] </code></pre> <p>You could also send the output in a file to find any <code>svn:ignore</code> property:</p> <pre><code>svn proplist -v -R [TARGET] > file.log </code></pre> | 63 | svn | <h1>How do I list a Subversion repository's ignore settings?</h1>
<p>I have an SVN repository I set up a long time ago. I don't remember exactly what files I specified to be ignored, and I can't find documentation on how to display the ignore settings I set.</p>
<p>How can I find these settings?</p>
<p>This is on my ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,196 | svn | # How do I list a Subversion repository's ignore settings?
I have an SVN repository I set up a long time ago. I don't remember exactly what files I specified to be ignored, and I can't find documentation on how to display the ignore settings I set.
How can I find these settings?
This is on my [CentOS](http://en.wiki... | List all properties recursively on all files:
```
svn proplist -v -R [TARGET]
```
You could also send the output in a file to find any `svn:ignore` property:
```
svn proplist -v -R [TARGET] > file.log
``` |
683716 | Subversion update externals to a date | 41 | 2009-03-25 22:12:48 | <p>I'm working on a large, established project under SVN control. Many parts of the code base are being checked out as externals, but are being actively worked on by other people.<br>
I wanted to update my entire working copy, externals and all, so that it reflected the various repositories' HEADs at a specific point i... | 22,436 | 55,245 | 2022-09-27 13:04:06 | 3,608,453 | 44 | 2010-08-31 11:17:29 | 435,859 | 2015-07-16 10:47:27 | https://stackoverflow.com/q/683716 | https://stackoverflow.com/a/3608453 | <p>This is inefficient, in that it calls svn update more often than (usually) required. Otherwise, it is short an sweet:</p>
<p>Unix:</p>
<pre><code>find . -name .svn -execdir svn update -r {2010-08-30} \;
</code></pre>
<p>Windows:</p>
<pre><code>forfiles /m .svn /s /c "cmd /c svn up -r {2010-08-30}"
</code></pre>... | <p>This is inefficient, in that it calls svn update more often than (usually) required. Otherwise, it is short an sweet:</p> <p>Unix:</p> <pre><code>find . -name .svn -execdir svn update -r {2010-08-30} \; </code></pre> <p>Windows:</p> <pre><code>forfiles /m .svn /s /c "cmd /c svn up -r {2010-08-30}" </code></pre>... | 63 | svn | <h1>Subversion update externals to a date</h1>
<p>I'm working on a large, established project under SVN control. Many parts of the code base are being checked out as externals, but are being actively worked on by other people.<br>
I wanted to update my entire working copy, externals and all, so that it reflected the va... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,197 | svn | # Subversion update externals to a date
I'm working on a large, established project under SVN control. Many parts of the code base are being checked out as externals, but are being actively worked on by other people.
I wanted to update my entire working copy, externals and all, so that it reflected the various repos... | This is inefficient, in that it calls svn update more often than (usually) required. Otherwise, it is short an sweet:
Unix:
```
find . -name .svn -execdir svn update -r {2010-08-30} \;
```
Windows:
```
forfiles /m .svn /s /c "cmd /c svn up -r {2010-08-30}"
``` |
6874796 | Configure TeamCity to build from SVN trunk, branches and/or tags | 36 | 2011-07-29 14:37:34 | <p>How can I configure TeamCity to build from SVN trunk and also from different branches and/or tags ?</p>
<p>Our idea is to have multiple builds from the same project, this way we can have the current version that is in production (with the ability to make deploys and fixes over that "release tag") and at the same ti... | 18,989 | 869,569 | 2019-01-03 16:14:32 | 6,875,151 | 44 | 2011-07-29 15:05:49 | 119,562 | 2011-07-29 15:05:49 | https://stackoverflow.com/q/6874796 | https://stackoverflow.com/a/6875151 | <p>First, ensure your VCS root is the root of your SVN repository in your administration panel, instead of being pointed to the trunk directory.</p>
<p>Then, for each build configuration, edit the checkout rules in your VCS Configuration. Add the checkout rule you desire.</p>
<p>For example, for your 'trunk' build co... | <p>First, ensure your VCS root is the root of your SVN repository in your administration panel, instead of being pointed to the trunk directory.</p> <p>Then, for each build configuration, edit the checkout rules in your VCS Configuration. Add the checkout rule you desire.</p> <p>For example, for your 'trunk' build co... | 63, 115, 604, 1879, 1880 | branch, svn, tags, teamcity, trunk | <h1>Configure TeamCity to build from SVN trunk, branches and/or tags</h1>
<p>How can I configure TeamCity to build from SVN trunk and also from different branches and/or tags ?</p>
<p>Our idea is to have multiple builds from the same project, this way we can have the current version that is in production (with the abi... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,198 | svn | # Configure TeamCity to build from SVN trunk, branches and/or tags
How can I configure TeamCity to build from SVN trunk and also from different branches and/or tags ?
Our idea is to have multiple builds from the same project, this way we can have the current version that is in production (with the ability to make dep... | First, ensure your VCS root is the root of your SVN repository in your administration panel, instead of being pointed to the trunk directory.
Then, for each build configuration, edit the checkout rules in your VCS Configuration. Add the checkout rule you desire.
For example, for your 'trunk' build configuraton, you w... |
2246988 | SVN find revision of tag | 35 | 2010-02-11 19:09:17 | <p>Is there any way of showing which revision is equivalent to a certain tag?</p>
| 26,441 | 267,312 | 2010-02-11 19:39:45 | 2,247,144 | 44 | 2010-02-11 19:32:07 | 209,856 | 2010-02-11 19:32:07 | https://stackoverflow.com/q/2246988 | https://stackoverflow.com/a/2247144 | <p>Try this</p>
<p><code>svn log /path/to/tag -v --stop-on-copy</code></p>
<p>You might see something like this</p>
<pre>
r10 | user | 2010-02-07 17:06:01 -0800 (Sun, 07 Feb 2010) | 1 line
Changed paths:
A /path/to/tag (from /path/to/branch:5)
</pre>
<p>You can see that the tag was branched at revision 5</p>
| <p>Try this</p> <p><code>svn log /path/to/tag -v --stop-on-copy</code></p> <p>You might see something like this</p> <pre> r10 | user | 2010-02-07 17:06:01 -0800 (Sun, 07 Feb 2010) | 1 line Changed paths: A /path/to/tag (from /path/to/branch:5) </pre> <p>You can see that the tag was branched at revision 5</p> | 63, 115, 41309 | revisions, svn, tags | <h1>SVN find revision of tag</h1>
<p>Is there any way of showing which revision is equivalent to a certain tag?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,199 | svn | # SVN find revision of tag
Is there any way of showing which revision is equivalent to a certain tag? | Try this
`svn log /path/to/tag -v --stop-on-copy`
You might see something like this
```
r10 | user | 2010-02-07 17:06:01 -0800 (Sun, 07 Feb 2010) | 1 line
Changed paths:
A /path/to/tag (from /path/to/branch:5)
```
You can see that the tag was branched at revision 5 |
3531989 | How to merge branch back to trunk in SVN with all commit history? | 31 | 2010-08-20 14:47:39 | <p>How to merge branch back to trunk in SVN with all commit history? I know in Git I can use</p>
<pre><code>merge -squash
</code></pre>
<p>Is there any equivalent command in SVN? I am using SVN 1.6.</p>
| 23,480 | 304,319 | 2011-11-09 23:14:32 | 3,603,442 | 44 | 2010-08-30 19:12:02 | 2,094 | 2010-08-30 19:12:02 | https://stackoverflow.com/q/3531989 | https://stackoverflow.com/a/3603442 | <p>With Subversion 1.5 or later the merge is recorded on your local working copy in the svn:mergeinfo property. So this information is not lost. </p>
<p>You can see the merged revisions if you use <code>svn log -g</code> instead of the normal <code>svn log</code>.</p>
<p>Normal merges are performed as</p>
<pre><code... | <p>With Subversion 1.5 or later the merge is recorded on your local working copy in the svn:mergeinfo property. So this information is not lost. </p> <p>You can see the merged revisions if you use <code>svn log -g</code> instead of the normal <code>svn log</code>.</p> <p>Normal merges are performed as</p> <pre><code... | 63, 717 | merge, svn | <h1>How to merge branch back to trunk in SVN with all commit history?</h1>
<p>How to merge branch back to trunk in SVN with all commit history? I know in Git I can use</p>
<pre><code>merge -squash
</code></pre>
<p>Is there any equivalent command in SVN? I am using SVN 1.6.</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,200 | svn | # How to merge branch back to trunk in SVN with all commit history?
How to merge branch back to trunk in SVN with all commit history? I know in Git I can use
```
merge -squash
```
Is there any equivalent command in SVN? I am using SVN 1.6. | With Subversion 1.5 or later the merge is recorded on your local working copy in the svn:mergeinfo property. So this information is not lost.
You can see the merged revisions if you use `svn log -g` instead of the normal `svn log`.
Normal merges are performed as
```
svn merge -rREV1:REV2 svn://server/branch my_trunk... |
6043094 | Concise command line for subversion copy (branch) | 26 | 2011-05-18 10:17:10 | <p>All examples of svn branching I have seen so far look like this
<code>
svn cp -m 'Making test branch' svn://svnrepo/hellosite svn://svnrepo/hellosite2
</code></p>
<p>So in order to branch I need to specify full URL of remote repository every time. But:</p>
<ul>
<li>Working copy is associated with one single remote... | 20,794 | 117,220 | 2015-08-11 13:02:51 | 6,045,638 | 44 | 2011-05-18 13:37:59 | 243,245 | 2011-05-18 13:37:59 | https://stackoverflow.com/q/6043094 | https://stackoverflow.com/a/6045638 | <p>Using SVN 1.6 or later, if you're inside a working copy at the time then you can use the <a href="http://svnbook.red-bean.com/nightly/en/svn.basic.in-action.html#svn.advanced.reposurls">caret notation</a> as a short-cut to the repository root, e.g.</p>
<pre><code>svn cp -m 'Making test branch' ^/trunk ^/branches/he... | <p>Using SVN 1.6 or later, if you're inside a working copy at the time then you can use the <a href="http://svnbook.red-bean.com/nightly/en/svn.basic.in-action.html#svn.advanced.reposurls">caret notation</a> as a short-cut to the repository root, e.g.</p> <pre><code>svn cp -m 'Making test branch' ^/trunk ^/branches/he... | 63, 1231, 1879, 4330, 31134 | branch, command-line, command-line-arguments, copy, svn | <h1>Concise command line for subversion copy (branch)</h1>
<p>All examples of svn branching I have seen so far look like this
<code>
svn cp -m 'Making test branch' svn://svnrepo/hellosite svn://svnrepo/hellosite2
</code></p>
<p>So in order to branch I need to specify full URL of remote repository every time. But:</p>
... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,203 | svn | # Concise command line for subversion copy (branch)
All examples of svn branching I have seen so far look like this
`svn cp -m 'Making test branch' svn://svnrepo/hellosite svn://svnrepo/hellosite2`
So in order to branch I need to specify full URL of remote repository every time. But:
- Working copy is associated wit... | Using SVN 1.6 or later, if you're inside a working copy at the time then you can use the [caret notation](http://svnbook.red-bean.com/nightly/en/svn.basic.in-action.html#svn.advanced.reposurls) as a short-cut to the repository root, e.g.
```
svn cp -m 'Making test branch' ^/trunk ^/branches/hellosite
```
Note that on... |
22677210 | `svn checkout` fails with the “cannot run program” “cannot find the file specified” error | 25 | 2014-03-27 02:33:41 | <p>I'm Checking a sample in google code. It requested me to checkout the source using SVN Checkout. Sine I am using Android Studio, I used the Subversion checkout options in VCS-->Checkout from version control-->Subversion. Howerver I encountered an error. Is their something I have done wrong?</p>
<p>Checking out goog... | 44,807 | 2,771,162 | 2021-08-25 18:09:20 | 22,682,480 | 44 | 2014-03-27 08:53:05 | 761,095 | 2016-06-02 12:52:58 | https://stackoverflow.com/q/22677210 | https://stackoverflow.com/a/22682480 | <p>The error <code>Cannot load supported formats: Cannot run program "svn": Create process error=2, The system cannot find the file specified</code> indicates that Android Studio / IntelliJ IDEA can't locate Subversion 1.8 command-line client on your machine. Follow these steps to solve the issue:</p>
<ol>
<li>Make su... | <p>The error <code>Cannot load supported formats: Cannot run program "svn": Create process error=2, The system cannot find the file specified</code> indicates that Android Studio / IntelliJ IDEA can't locate Subversion 1.8 command-line client on your machine. Follow these steps to solve the issue:</p> <ol> <li>Make su... | 63, 1386, 91905 | android, android-studio, svn | <h1>`svn checkout` fails with the “cannot run program” “cannot find the file specified” error</h1>
<p>I'm Checking a sample in google code. It requested me to checkout the source using SVN Checkout. Sine I am using Android Studio, I used the Subversion checkout options in VCS-->Checkout from version control-->Subversio... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,204 | svn | # `svn checkout` fails with the “cannot run program” “cannot find the file specified” error
I'm Checking a sample in google code. It requested me to checkout the source using SVN Checkout. Sine I am using Android Studio, I used the Subversion checkout options in VCS-->Checkout from version control-->Subversion. Howerv... | The error `Cannot load supported formats: Cannot run program "svn": Create process error=2, The system cannot find the file specified` indicates that Android Studio / IntelliJ IDEA can't locate Subversion 1.8 command-line client on your machine. Follow these steps to solve the issue:
1. Make sure that you use the late... |
1644653 | Which files in a Visual C# Studio project don't need to be versioned? | 45 | 2009-10-29 15:43:48 | <p>I'm new to Visual C# Studio (actually using the Express edition, but another developer is using the full version), and we are using version control (svn).</p>
<p>It's acceptable to me to add the project files to the repository, since this repo is just for the two of us using Visual C# Studio. But it feels like ther... | 14,262 | 75,458 | 2024-03-08 06:11:06 | 1,644,693 | 43 | 2009-10-29 15:50:26 | 79,941 | 2024-03-08 06:11:06 | https://stackoverflow.com/q/1644653 | https://stackoverflow.com/a/1644693 | <p><strong>Don't include</strong><br />
bin<br />
obj<br />
*.suo<br />
*.user<br />
<code>_Resharper*</code> (if you have <a href="http://www.jetbrains.com/resharper/" rel="nofollow noreferrer">ReSharper</a>)</p>
<p><strong>Include</strong><br />
*.sln<br />
*.csproj</p>
<p>You can also check the <a href="https://gith... | <p><strong>Don't include</strong><br /> bin<br /> obj<br /> *.suo<br /> *.user<br /> <code>_Resharper*</code> (if you have <a href="http://www.jetbrains.com/resharper/" rel="nofollow noreferrer">ReSharper</a>)</p> <p><strong>Include</strong><br /> *.sln<br /> *.csproj</p> <p>You can also check the <a href="https://gith... | 9, 63, 32472, 33953 | c#, svn, visual-studio, visual-studio-2008 | <h1>Which files in a Visual C# Studio project don't need to be versioned?</h1>
<p>I'm new to Visual C# Studio (actually using the Express edition, but another developer is using the full version), and we are using version control (svn).</p>
<p>It's acceptable to me to add the project files to the repository, since thi... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,207 | svn | # Which files in a Visual C# Studio project don't need to be versioned?
I'm new to Visual C# Studio (actually using the Express edition, but another developer is using the full version), and we are using version control (svn).
It's acceptable to me to add the project files to the repository, since this repo is just f... | **Don't include**
bin
obj
*.suo
*.user
`_Resharper*` (if you have [ReSharper](http://www.jetbrains.com/resharper/))
**Include**
*.sln
*.csproj
You can also check the [.gitignore file for visual studio projects](https://github.com/github/gitignore/blob/master/VisualStudio.gitignore) on GitHub. |
4798822 | How do I get a list of changed files in svn? | 32 | 2011-01-25 21:06:47 | <p>I just want a list of files that are different between my working directory and the repository. <code>summary</code> only seems to report differences between repositories.</p>
| 45,398 | 579,092 | 2021-04-19 11:40:37 | 4,798,844 | 43 | 2011-01-25 21:08:42 | 167,985 | 2011-01-25 21:08:42 | https://stackoverflow.com/q/4798822 | https://stackoverflow.com/a/4798844 | <p>Run <code>svn status</code>. It will distinguish between modified, deleted, added, etc. <code>svn help status</code> has a bunch of information for you.</p>
| <p>Run <code>svn status</code>. It will distinguish between modified, deleted, added, etc. <code>svn help status</code> has a bunch of information for you.</p> | 63, 606 | diff, svn | <h1>How do I get a list of changed files in svn?</h1>
<p>I just want a list of files that are different between my working directory and the repository. <code>summary</code> only seems to report differences between repositories.</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,210 | svn | # How do I get a list of changed files in svn?
I just want a list of files that are different between my working directory and the repository. `summary` only seems to report differences between repositories. | Run `svn status`. It will distinguish between modified, deleted, added, etc. `svn help status` has a bunch of information for you. |
6474523 | SVN ignore pattern with Xcode 4 | 26 | 2011-06-24 22:50:35 | <p>(provided you use Xcode 4)
What is your SVN ignore pattern? Do you have a global one or do you prefer to set it via propset? </p>
| 19,787 | 560,653 | 2011-07-01 10:35:24 | 6,546,289 | 43 | 2011-07-01 09:44:41 | 824,627 | 2011-07-01 09:44:41 | https://stackoverflow.com/q/6474523 | https://stackoverflow.com/a/6546289 | <p>I have the following in my ~/.subversion/config file:</p>
<p><code>global-ignores = *.o *.lo *.la .*.rej *.rej .*~ *~ .#* .DS_Store *~.nib *.mode* *.pbxuser CVS _*.java *.perspective .LSOverride *.xcuserdatad</code></p>
<p>I added the last one (*.xcuserdatad) recently for Xcode 4.</p>
| <p>I have the following in my ~/.subversion/config file:</p> <p><code>global-ignores = *.o *.lo *.la .*.rej *.rej .*~ *~ .#* .DS_Store *~.nib *.mode* *.pbxuser CVS _*.java *.perspective .LSOverride *.xcuserdatad</code></p> <p>I added the last one (*.xcuserdatad) recently for Xcode 4.</p> | 63, 908 | svn, xcode | <h1>SVN ignore pattern with Xcode 4</h1>
<p>(provided you use Xcode 4)
What is your SVN ignore pattern? Do you have a global one or do you prefer to set it via propset? </p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,211 | svn | # SVN ignore pattern with Xcode 4
(provided you use Xcode 4)
What is your SVN ignore pattern? Do you have a global one or do you prefer to set it via propset? | I have the following in my ~/.subversion/config file:
`global-ignores = *.o *.lo *.la .*.rej *.rej .*~ *~ .#* .DS_Store *~.nib *.mode* *.pbxuser CVS _*.java *.perspective .LSOverride *.xcuserdatad`
I added the last one (*.xcuserdatad) recently for Xcode 4. |
167371 | How do I see what files were changed between 2 revisions? | 23 | 2008-10-03 15:16:11 | <p>I just want to see what files were modded/added/deleted between 2 arbitrary revisions. How do I do this?</p>
<p>Can I do this in tortoise as well?</p>
| 21,021 | 1,946 | 2016-12-14 14:22:38 | 167,378 | 43 | 2008-10-03 15:17:55 | 16,034 | 2008-10-03 15:23:43 | https://stackoverflow.com/q/167371 | https://stackoverflow.com/a/167378 | <pre><code>svn log -v -rX:Y .
</code></pre>
<p>The -v for "verbose" switch will give you detailed output on which files were affected on that revision.</p>
<p>Note that "." assumes you are currently in a working copy directory, but you can also use a URL such as "<a href="http://svn.myawesomesoftwareproject.com/trunk... | <pre><code>svn log -v -rX:Y . </code></pre> <p>The -v for "verbose" switch will give you detailed output on which files were affected on that revision.</p> <p>Note that "." assumes you are currently in a working copy directory, but you can also use a URL such as "<a href="http://svn.myawesomesoftwareproject.com/trunk... | 63, 656 | svn, tortoisesvn | <h1>How do I see what files were changed between 2 revisions?</h1>
<p>I just want to see what files were modded/added/deleted between 2 arbitrary revisions. How do I do this?</p>
<p>Can I do this in tortoise as well?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,212 | svn | # How do I see what files were changed between 2 revisions?
I just want to see what files were modded/added/deleted between 2 arbitrary revisions. How do I do this?
Can I do this in tortoise as well? | ```
svn log -v -rX:Y .
```
The -v for "verbose" switch will give you detailed output on which files were affected on that revision.
Note that "." assumes you are currently in a working copy directory, but you can also use a URL such as "<http://svn.myawesomesoftwareproject.com/trunk/lib/foo.c>".
This information can... |
976829 | SVN copy between repositories with history | 70 | 2009-06-10 16:46:27 | <p>One of my teammates has asked if it is possible to export from one SVN to another, all while maintaining history.</p>
<p>To me, this seems like it would be a common request.</p>
<p>So: <strong>Is it possible to migrate between SVN repositories all while maintaining history?</strong></p>
<p>It is important to note... | 85,304 | 57,986 | 2014-04-08 12:42:07 | 976,870 | 42 | 2009-06-10 16:54:25 | 90,203 | 2013-03-22 17:41:40 | https://stackoverflow.com/q/976829 | https://stackoverflow.com/a/976870 | <p>[<strong>Edit</strong>: The original reply below is from pre SVN 1.7, and there this was the best way to solve the problem (although it is not the primary use case of <code>svnsync</code>). In SVN 1.7 client or later there is the <a href="http://subversion.apache.org/docs/release-notes/1.7.html#svnrdump" rel="norefe... | <p>[<strong>Edit</strong>: The original reply below is from pre SVN 1.7, and there this was the best way to solve the problem (although it is not the primary use case of <code>svnsync</code>). In SVN 1.7 client or later there is the <a href="http://subversion.apache.org/docs/release-notes/1.7.html#svnrdump" rel="norefe... | 63, 456, 2513 | data-migration, svn, version-control | <h1>SVN copy between repositories with history</h1>
<p>One of my teammates has asked if it is possible to export from one SVN to another, all while maintaining history.</p>
<p>To me, this seems like it would be a common request.</p>
<p>So: <strong>Is it possible to migrate between SVN repositories all while maintaini... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,215 | svn | # SVN copy between repositories with history
One of my teammates has asked if it is possible to export from one SVN to another, all while maintaining history.
To me, this seems like it would be a common request.
So: **Is it possible to migrate between SVN repositories all while maintaining history?**
It is importan... | [**Edit**: The original reply below is from pre SVN 1.7, and there this was the best way to solve the problem (although it is not the primary use case of `svnsync`). In SVN 1.7 client or later there is the [`svnrdump`](http://subversion.apache.org/docs/release-notes/1.7.html#svnrdump) tool that does more directly what ... |
18444634 | Tortoisesvn Subversion 1.8 - merge - no more reintegrate a branch option | 67 | 2013-08-26 12:53:15 | <p>In tortoiseSvn 1.8 there is no "reintegrate" a branch option.
What is the right way to reintegrate a branch in Tortoise Svn 1.8?</p>
<p>In choose merge and then next option:
<img src="https://i.sstatic.net/WZKG5.png" alt="Merge first step"></p>
<p>Then I get next window:
<img src="https://i.sstatic.net/siSr8.png" ... | 58,839 | 1,063,571 | 2014-06-30 09:04:28 | 18,445,206 | 42 | 2013-08-26 13:22:15 | 960,558 | 2013-08-26 22:17:34 | https://stackoverflow.com/q/18444634 | https://stackoverflow.com/a/18445206 | <p>Just merge branch to any TARGET</p>
<p><em>Edit</em></p>
<p>OK, extended answer: "Merge for Dummies" in pictures</p>
<p><strong>Preface</strong></p>
<p>OK, I will not mask or hide used proving ground.</p>
<p>Used in this sample resources:</p>
<ul>
<li>Repository "Hello, World" <a href="http://mayorat.ursinecor... | <p>Just merge branch to any TARGET</p> <p><em>Edit</em></p> <p>OK, extended answer: "Merge for Dummies" in pictures</p> <p><strong>Preface</strong></p> <p>OK, I will not mask or hide used proving ground.</p> <p>Used in this sample resources:</p> <ul> <li>Repository "Hello, World" <a href="http://mayorat.ursinecor... | 63, 656, 53847 | branching-and-merging, svn, tortoisesvn | <h1>Tortoisesvn Subversion 1.8 - merge - no more reintegrate a branch option</h1>
<p>In tortoiseSvn 1.8 there is no "reintegrate" a branch option.
What is the right way to reintegrate a branch in Tortoise Svn 1.8?</p>
<p>In choose merge and then next option:
<img src="https://i.sstatic.net/WZKG5.png" alt="Merge first ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,216 | svn | # Tortoisesvn Subversion 1.8 - merge - no more reintegrate a branch option
In tortoiseSvn 1.8 there is no "reintegrate" a branch option.
What is the right way to reintegrate a branch in Tortoise Svn 1.8?
In choose merge and then next option:

Then I get next window... | Just merge branch to any TARGET
*Edit*
OK, extended answer: "Merge for Dummies" in pictures
**Preface**
OK, I will not mask or hide used proving ground.
Used in this sample resources:
- Repository "Hello, World" <http://mayorat.ursinecorner.ru:8088/svn/Hello/>
- Branch <http://mayorat.ursinecorner.ru:8088/svn/H... |
10618438 | Command to get svn diff of current and previous revision number | 59 | 2012-05-16 12:23:41 | <p>How can I get diff in file content of current and previous revision number by command line?</p>
<p>And how can I get previous revision number?</p>
| 79,264 | 1,367,360 | 2013-11-20 13:00:31 | 10,618,744 | 42 | 2012-05-16 12:40:38 | 1,178,189 | 2012-05-16 14:37:55 | https://stackoverflow.com/q/10618438 | https://stackoverflow.com/a/10618744 | <p>As per your comments you'd like to see differences between the current and previous versions of an item that is not in your working copy. For that you need to know the item's URL (e.g. <code>svn://[repo_root]/[path]/[item]</code>) which I assume you do. Then you do the following:</p>
<pre><code>svn info <item-UR... | <p>As per your comments you'd like to see differences between the current and previous versions of an item that is not in your working copy. For that you need to know the item's URL (e.g. <code>svn://[repo_root]/[path]/[item]</code>) which I assume you do. Then you do the following:</p> <pre><code>svn info <item-UR... | 63, 656 | svn, tortoisesvn | <h1>Command to get svn diff of current and previous revision number</h1>
<p>How can I get diff in file content of current and previous revision number by command line?</p>
<p>And how can I get previous revision number?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,217 | svn | # Command to get svn diff of current and previous revision number
How can I get diff in file content of current and previous revision number by command line?
And how can I get previous revision number? | As per your comments you'd like to see differences between the current and previous versions of an item that is not in your working copy. For that you need to know the item's URL (e.g. `svn://[repo_root]/[path]/[item]`) which I assume you do. Then you do the following:
```
svn info <item-URL>
```
will contain (among ... |
214886 | How do I hide directories in Apache, specifically source-control? | 28 | 2008-10-18 10:51:40 | <p>I want to keep my website/s in version control (Subversion specifically) and use <code>svn co</code> to update it when there are stable versions to update, but I'm concerned about the security of doing so, as all the <code>.svn</code> folders will be public, and these include all sorts of private data, not least of ... | 28,104 | 15,537 | 2012-06-03 13:00:17 | 214,908 | 42 | 2008-10-18 11:14:05 | 5,190 | 2012-05-26 12:39:49 | https://stackoverflow.com/q/214886 | https://stackoverflow.com/a/214908 | <p>Two things:</p>
<ol>
<li><p>Do not use IfModule for functionality you need to be present. It's okay to do it for the autoindex because it might not be present and is not crucial to the scheme. But you are counting on rewrite being present to protect your content. Thus, it's better to remove the IfModule directive a... | <p>Two things:</p> <ol> <li><p>Do not use IfModule for functionality you need to be present. It's okay to do it for the autoindex because it might not be present and is not crucial to the scheme. But you are counting on rewrite being present to protect your content. Thus, it's better to remove the IfModule directive a... | 63, 80 | apache, svn | <h1>How do I hide directories in Apache, specifically source-control?</h1>
<p>I want to keep my website/s in version control (Subversion specifically) and use <code>svn co</code> to update it when there are stable versions to update, but I'm concerned about the security of doing so, as all the <code>.svn</code> folders... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,218 | svn | # How do I hide directories in Apache, specifically source-control?
I want to keep my website/s in version control (Subversion specifically) and use `svn co` to update it when there are stable versions to update, but I'm concerned about the security of doing so, as all the `.svn` folders will be public, and these incl... | Two things:
1. Do not use IfModule for functionality you need to be present. It's okay to do it for the autoindex because it might not be present and is not crucial to the scheme. But you are counting on rewrite being present to protect your content. Thus, it's better to remove the IfModule directive and let apache te... |
3253632 | What are VSSVER.SCC files, and can I delete them? | 27 | 2010-07-15 08:10:05 | <p>I've inherited a ASP.Net 2.0 (File System) Web Project from a client, where a few different companies have worked on this project in recent years. The project has been handed from one company to the next, before finally ending up with me.</p>
<p>So now, as you can imagine, the code base and file and folder structur... | 32,935 | 127,488 | 2017-04-13 10:40:56 | 3,255,758 | 42 | 2010-07-15 13:05:04 | 158,779 | 2010-07-15 13:05:04 | https://stackoverflow.com/q/3253632 | https://stackoverflow.com/a/3255758 | <p>The files are part of the Visual SourceSafe binding mechanism. The files that are safe to delete are:</p>
<ul>
<li>*.scc</li>
<li>*.vssscc</li>
<li>*.vspscc</li>
</ul>
<p>In addition to deleting the above files I would remove the binding information on all project files (*.vbproj, *.csproj, etc.) by removing the f... | <p>The files are part of the Visual SourceSafe binding mechanism. The files that are safe to delete are:</p> <ul> <li>*.scc</li> <li>*.vssscc</li> <li>*.vspscc</li> </ul> <p>In addition to deleting the above files I would remove the binding information on all project files (*.vbproj, *.csproj, etc.) by removing the f... | 63, 12234 | code-cleanup, svn | <h1>What are VSSVER.SCC files, and can I delete them?</h1>
<p>I've inherited a ASP.Net 2.0 (File System) Web Project from a client, where a few different companies have worked on this project in recent years. The project has been handed from one company to the next, before finally ending up with me.</p>
<p>So now, as ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,219 | svn | # What are VSSVER.SCC files, and can I delete them?
I've inherited a ASP.Net 2.0 (File System) Web Project from a client, where a few different companies have worked on this project in recent years. The project has been handed from one company to the next, before finally ending up with me.
So now, as you can imagine,... | The files are part of the Visual SourceSafe binding mechanism. The files that are safe to delete are:
- *.scc
- *.vssscc
- *.vspscc
In addition to deleting the above files I would remove the binding information on all project files (*.vbproj, *.csproj, etc.) by removing the following XML tags.
- SccProjectName
- Scc... |
3196083 | Download single file | 27 | 2010-07-07 15:08:41 | <p>How can I download single file from an SVN repository?</p>
<p>For example:</p>
<pre><code>svn co http://server.com/svn/trunk/test.file test.file
svn: URL 'http://server.com/svn/trunk/test.file test.file' refers to a file, not a directory
</code></pre>
<p>But I can download directories in this way.</p>
| 39,630 | 87,152 | 2013-12-09 13:02:51 | 3,196,108 | 42 | 2010-07-07 15:11:19 | 53,587 | 2010-07-07 15:11:19 | https://stackoverflow.com/q/3196083 | https://stackoverflow.com/a/3196108 | <pre><code>svn export <URL> <PATH>
</code></pre>
<p>Path is optional</p>
<p><a href="http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.ref.svn.c.export" rel="noreferrer">svn export</a></p>
<p>And for uploading a single file<br>
<a href="http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.ref.svn.c.im... | <pre><code>svn export <URL> <PATH> </code></pre> <p>Path is optional</p> <p><a href="http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.ref.svn.c.export" rel="noreferrer">svn export</a></p> <p>And for uploading a single file<br> <a href="http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.ref.svn.c.im... | 63, 658, 5310 | file, svn, upload | <h1>Download single file</h1>
<p>How can I download single file from an SVN repository?</p>
<p>For example:</p>
<pre><code>svn co http://server.com/svn/trunk/test.file test.file
svn: URL 'http://server.com/svn/trunk/test.file test.file' refers to a file, not a directory
</code></pre>
<p>But I can download directorie... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,220 | svn | # Download single file
How can I download single file from an SVN repository?
For example:
```
svn co http://server.com/svn/trunk/test.file test.file
svn: URL 'http://server.com/svn/trunk/test.file test.file' refers to a file, not a directory
```
But I can download directories in this way. | ```
svn export <URL> <PATH>
```
Path is optional
[svn export](http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.ref.svn.c.export)
And for uploading a single file
[svn import](http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.ref.svn.c.import) |
3257488 | Tortoise - is it possible to ignore new folder before committing it? | 23 | 2010-07-15 16:03:41 | <p>I just added a class library project to my .NET solution. When I built it, it created the <code>bin</code> and <code>obj</code> folders, which I want to exclude from version control.</p>
<p>However, Tortoise won't let me ignore the folders before the first commit. It gives the following message.</p>
<blockquote>
... | 12,666 | 164,923 | 2014-02-14 19:26:31 | 3,257,531 | 42 | 2010-07-15 16:07:29 | 188,414 | 2010-07-15 16:07:29 | https://stackoverflow.com/q/3257488 | https://stackoverflow.com/a/3257531 | <p>It's because you haven't yet added their parent directories. Do 'add' on the new project directory first, and then when it gives you the dialog showing the list of files to add, untick <code>bin</code> and <code>obj</code>. You can then ignore them once the project directory has been added. </p>
<p>You could als... | <p>It's because you haven't yet added their parent directories. Do 'add' on the new project directory first, and then when it gives you the dialog showing the list of files to add, untick <code>bin</code> and <code>obj</code>. You can then ignore them once the project directory has been added. </p> <p>You could als... | 63, 656, 4333 | ignore, svn, tortoisesvn | <h1>Tortoise - is it possible to ignore new folder before committing it?</h1>
<p>I just added a class library project to my .NET solution. When I built it, it created the <code>bin</code> and <code>obj</code> folders, which I want to exclude from version control.</p>
<p>However, Tortoise won't let me ignore the folder... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,221 | svn | # Tortoise - is it possible to ignore new folder before committing it?
I just added a class library project to my .NET solution. When I built it, it created the `bin` and `obj` folders, which I want to exclude from version control.
However, Tortoise won't let me ignore the folders before the first commit. It gives th... | It's because you haven't yet added their parent directories. Do 'add' on the new project directory first, and then when it gives you the dialog showing the list of files to add, untick `bin` and `obj`. You can then ignore them once the project directory has been added.
You could also add `bin` and `obj` to your global... |
488778 | How do I list all repositories with the SVNParentPath directive on Apache+SVN? | 18 | 2009-01-28 18:32:42 | <p>I'm using SVN through Apache with <code>dav_svn_module</code> like this:</p>
<pre><code><Location /svn>
DAV svn
SVNParentPath C:/svn_repository
AuthName "Subversion Repository"
...
</Location>
</code></pre>
<p>This lets me access my repos:</p>
<pre><code>C:/svn_repository/repo1
C:/svn_reposito... | 23,762 | 29 | 2009-01-28 19:00:38 | 488,882 | 42 | 2009-01-28 19:00:38 | null | 2009-01-28 19:00:38 | https://stackoverflow.com/q/488778 | https://stackoverflow.com/a/488882 | <p>Add this line</p>
<pre><code>SVNListParentPath on
</code></pre>
<p>right under the SVNParentPath. Restart apache.</p>
| <p>Add this line</p> <pre><code>SVNListParentPath on </code></pre> <p>right under the SVNParentPath. Restart apache.</p> | 63, 5876, 12660 | apache2, mod-dav-svn, svn | <h1>How do I list all repositories with the SVNParentPath directive on Apache+SVN?</h1>
<p>I'm using SVN through Apache with <code>dav_svn_module</code> like this:</p>
<pre><code><Location /svn>
DAV svn
SVNParentPath C:/svn_repository
AuthName "Subversion Repository"
...
</Location>
</code></pre>
... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,222 | svn | # How do I list all repositories with the SVNParentPath directive on Apache+SVN?
I'm using SVN through Apache with `dav_svn_module` like this:
```
<Location /svn>
DAV svn
SVNParentPath C:/svn_repository
AuthName "Subversion Repository"
...
</Location>
```
This lets me access my repos:
```
C:/svn_repository/... | Add this line
```
SVNListParentPath on
```
right under the SVNParentPath. Restart apache. |
5543285 | How do I fix a repository with one broken revision? | 40 | 2011-04-04 19:23:55 | <p>My home server had a hard drive failure.</p>
<p>Once I realized the disk was going, I logged in and did a straight copy of my repository, which contains multiple projects.</p>
<p>However, since the disk was failing, one of the revisions is broken:</p>
<pre><code>$ svnadmin verify master/
[...]
* Verified revision... | 48,573 | 28,169 | 2012-12-17 21:48:09 | 5,600,293 | 41 | 2011-04-08 20:12:30 | 28,169 | 2011-04-08 20:12:30 | https://stackoverflow.com/q/5543285 | https://stackoverflow.com/a/5600293 | <p>I solved it.</p>
<p>The solution was (of course) obvious, once I realized it.</p>
<p>I had this:</p>
<ul>
<li><code>master/</code>: A copy of a broken repository, featuring revision 0..947, with revision 823's files physically missing.</li>
<li><code>repos/</code>: A repository loaded from a backup (dump file), c... | <p>I solved it.</p> <p>The solution was (of course) obvious, once I realized it.</p> <p>I had this:</p> <ul> <li><code>master/</code>: A copy of a broken repository, featuring revision 0..947, with revision 823's files physically missing.</li> <li><code>repos/</code>: A repository loaded from a backup (dump file), c... | 63, 15460 | svn, svnadmin | <h1>How do I fix a repository with one broken revision?</h1>
<p>My home server had a hard drive failure.</p>
<p>Once I realized the disk was going, I logged in and did a straight copy of my repository, which contains multiple projects.</p>
<p>However, since the disk was failing, one of the revisions is broken:</p>
<... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,223 | svn | # How do I fix a repository with one broken revision?
My home server had a hard drive failure.
Once I realized the disk was going, I logged in and did a straight copy of my repository, which contains multiple projects.
However, since the disk was failing, one of the revisions is broken:
```
$ svnadmin verify master... | I solved it.
The solution was (of course) obvious, once I realized it.
I had this:
- `master/`: A copy of a broken repository, featuring revision 0..947, with revision 823's files physically missing.
- `repos/`: A repository loaded from a backup (dump file), covering revision 0..910.
The solution was simply to dump... |
17658065 | How to list SVN tags and its revisions from command line | 30 | 2013-07-15 15:33:27 | <p>I need revisions of different tags. So far I used a Tag-Browser in SmartSVN. However it is quite slow. </p>
<p>Something like <code>svn ls "^/tags"</code> shows only the tags but no revisions.
And something like</p>
<pre><code>svn log /path/to/tag -v --stop-on-copy
</code></pre>
<p>gives too much confusing infor... | 39,580 | 2,583,918 | 2018-10-02 07:44:37 | 17,659,976 | 41 | 2013-07-15 17:17:04 | 1,305,501 | 2018-10-02 07:44:37 | https://stackoverflow.com/q/17658065 | https://stackoverflow.com/a/17659976 | <p>You can see the revision numbers of the most recent commit for each tag by adding the option <code>-v</code>:</p>
<pre><code>svn ls -v ^/tags
</code></pre>
<p>If you want to process the results, I recommend using the command line <code>svn info --xml --depth=immediates ^/tags</code> and parsing the XML document wi... | <p>You can see the revision numbers of the most recent commit for each tag by adding the option <code>-v</code>:</p> <pre><code>svn ls -v ^/tags </code></pre> <p>If you want to process the results, I recommend using the command line <code>svn info --xml --depth=immediates ^/tags</code> and parsing the XML document wi... | 63, 115, 1231, 41309 | command-line, revisions, svn, tags | <h1>How to list SVN tags and its revisions from command line</h1>
<p>I need revisions of different tags. So far I used a Tag-Browser in SmartSVN. However it is quite slow. </p>
<p>Something like <code>svn ls "^/tags"</code> shows only the tags but no revisions.
And something like</p>
<pre><code>svn log /path/to/tag -... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,225 | svn | # How to list SVN tags and its revisions from command line
I need revisions of different tags. So far I used a Tag-Browser in SmartSVN. However it is quite slow.
Something like `svn ls "^/tags"` shows only the tags but no revisions.
And something like
```
svn log /path/to/tag -v --stop-on-copy
```
gives too much co... | You can see the revision numbers of the most recent commit for each tag by adding the option `-v`:
```
svn ls -v ^/tags
```
If you want to process the results, I recommend using the command line `svn info --xml --depth=immediates ^/tags` and parsing the XML document with a script. For example, the following python sc... |
6589512 | Checkout a specific older version of the source code through Subversion? | 28 | 2011-07-05 22:22:24 | <p>My project is currently at release (that is, r1000), and that is what is checked out to my local repository.</p>
<p>I would like to checkout a much older version to my repository, for purposes of performance comparison (for example, r500).</p>
<p>I have taken my tests and gotten results with r1000.</p>
<p>What sv... | 49,987 | 417,690 | 2014-10-14 15:05:54 | 6,589,551 | 41 | 2011-07-05 22:27:27 | 105,015 | 2011-07-05 22:27:27 | https://stackoverflow.com/q/6589512 | https://stackoverflow.com/a/6589551 | <p>You can update to a given revision using the r-parameter (or --revision)</p>
<pre><code>svn update -r500
</code></pre>
| <p>You can update to a given revision using the r-parameter (or --revision)</p> <pre><code>svn update -r500 </code></pre> | 63, 369 | macos, svn | <h1>Checkout a specific older version of the source code through Subversion?</h1>
<p>My project is currently at release (that is, r1000), and that is what is checked out to my local repository.</p>
<p>I would like to checkout a much older version to my repository, for purposes of performance comparison (for example, r... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,226 | svn | # Checkout a specific older version of the source code through Subversion?
My project is currently at release (that is, r1000), and that is what is checked out to my local repository.
I would like to checkout a much older version to my repository, for purposes of performance comparison (for example, r500).
I have ta... | You can update to a given revision using the r-parameter (or --revision)
```
svn update -r500
``` |
5309792 | XCode 4 (Assembla) SVN Repository "Unable to load revisions" | 24 | 2011-03-15 09:30:59 | <p>I've been trying unsuccessfully to connect to an https assembla svn repository with the new xcode 4 IDE for an iPhone project I'm working on.</p>
<p>I was able to connect just fine with the last version of xcode (3?), and with other svn apps. I'm using the same repo address and credentials, so I'm baffled as to why... | 24,096 | 660,280 | 2015-09-09 23:26:22 | 5,635,757 | 41 | 2011-04-12 13:13:32 | 446,335 | 2011-04-12 13:13:32 | https://stackoverflow.com/q/5309792 | https://stackoverflow.com/a/5635757 | <p>There are a lot of links, but no solution posted directly here, so I'll do it.</p>
<p>The reason Xcode4 does this is that it tries to log you into the SVN server with your mac credentials. When that fails, it basically just hangs and fails. The best solution I've seen so far is this:</p>
<p>open a terminal</p>
<p... | <p>There are a lot of links, but no solution posted directly here, so I'll do it.</p> <p>The reason Xcode4 does this is that it tries to log you into the SVN server with your mac credentials. When that fails, it basically just hangs and fails. The best solution I've seen so far is this:</p> <p>open a terminal</p> <p... | 63, 12204, 59704 | assembla, svn, xcode4 | <h1>XCode 4 (Assembla) SVN Repository "Unable to load revisions"</h1>
<p>I've been trying unsuccessfully to connect to an https assembla svn repository with the new xcode 4 IDE for an iPhone project I'm working on.</p>
<p>I was able to connect just fine with the last version of xcode (3?), and with other svn apps. I'm... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,228 | svn | # XCode 4 (Assembla) SVN Repository "Unable to load revisions"
I've been trying unsuccessfully to connect to an https assembla svn repository with the new xcode 4 IDE for an iPhone project I'm working on.
I was able to connect just fine with the last version of xcode (3?), and with other svn apps. I'm using the same ... | There are a lot of links, but no solution posted directly here, so I'll do it.
The reason Xcode4 does this is that it tries to log you into the SVN server with your mac credentials. When that fails, it basically just hangs and fails. The best solution I've seen so far is this:
open a terminal
If you don't have the p... |
21417390 | How to update an SVN branch made with svn-copy? | 20 | 2014-01-28 21:35:38 | <p>noob question I know, but all resources I found fail or gave me the new problem.</p>
<p>I have few branches in my SVN repo. All developers get access to his personal branch. Each branch was made by a copy from the beta branch.</p>
<pre><code>svn copy svn://192.168.0.2/svn/example/branches/beta
svn://192.168.0.2/s... | 21,829 | 2,090,870 | 2021-02-22 18:09:19 | 21,418,079 | 41 | 2014-01-28 22:15:14 | 2,089,194 | 2014-01-28 22:15:14 | https://stackoverflow.com/q/21417390 | https://stackoverflow.com/a/21418079 | <p>That error message occurs when someone deletes something without telling Subversion about it. If you were to run <code>svn status</code> on that working copy the same path that Subversion is complaining about should show with a <code>!</code> in the first column of the output. Usually this means that someone used ... | <p>That error message occurs when someone deletes something without telling Subversion about it. If you were to run <code>svn status</code> on that working copy the same path that Subversion is complaining about should show with a <code>!</code> in the first column of the output. Usually this means that someone used ... | 63, 456, 717 | merge, svn, version-control | <h1>How to update an SVN branch made with svn-copy?</h1>
<p>noob question I know, but all resources I found fail or gave me the new problem.</p>
<p>I have few branches in my SVN repo. All developers get access to his personal branch. Each branch was made by a copy from the beta branch.</p>
<pre><code>svn copy svn://... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,230 | svn | # How to update an SVN branch made with svn-copy?
noob question I know, but all resources I found fail or gave me the new problem.
I have few branches in my SVN repo. All developers get access to his personal branch. Each branch was made by a copy from the beta branch.
```
svn copy svn://192.168.0.2/svn/example/bra... | That error message occurs when someone deletes something without telling Subversion about it. If you were to run `svn status` on that working copy the same path that Subversion is complaining about should show with a `!` in the first column of the output. Usually this means that someone used an OS command to delete pat... |
2598510 | Where does TortoiseSVN save password cached files in Windows 7? | 20 | 2010-04-08 08:37:39 | <p>Where does TortoiseSVN save password cached files in Windows 7?</p>
<p>I found <code>c:\users\USERNAME\AppData\TSVNCache</code> directory, but it is empty.</p>
| 77,190 | 167,670 | 2017-12-29 23:45:03 | 2,598,544 | 41 | 2010-04-08 08:43:14 | 80,458 | 2012-03-20 21:25:23 | https://stackoverflow.com/q/2598510 | https://stackoverflow.com/a/2598544 | <p>In <code>c:\Users\USERNAME\AppData\Roaming\Subversion\</code>.</p>
| <p>In <code>c:\Users\USERNAME\AppData\Roaming\Subversion\</code>.</p> | 63, 656 | svn, tortoisesvn | <h1>Where does TortoiseSVN save password cached files in Windows 7?</h1>
<p>Where does TortoiseSVN save password cached files in Windows 7?</p>
<p>I found <code>c:\users\USERNAME\AppData\TSVNCache</code> directory, but it is empty.</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,231 | svn | # Where does TortoiseSVN save password cached files in Windows 7?
Where does TortoiseSVN save password cached files in Windows 7?
I found `c:\users\USERNAME\AppData\TSVNCache` directory, but it is empty. | In `c:\Users\USERNAME\AppData\Roaming\Subversion\`. |
767763 | SVN how to resolve new tree conflicts when file is added on two branches | 96 | 2009-04-20 10:49:25 | <p>When merging a couple of branches (using SVN 1.6.1) where a file has been added on both branches (and then worked on in those separate branches) I'm getting one of the new tree conflicts:</p>
<pre><code> C foo.txt
> local obstruction, incoming add upon merge
</code></pre>
<p>I need the changes from bot... | 199,101 | 6,432 | 2014-06-12 11:06:00 | 767,882 | 40 | 2009-04-20 11:29:56 | 6,309 | 2011-07-15 17:16:06 | https://stackoverflow.com/q/767763 | https://stackoverflow.com/a/767882 | <p>As was mentioned in an older version (2009) of the <a href="http://svn.apache.org/repos/asf/subversion/trunk/notes/tree-conflicts/design-overview.txt" rel="noreferrer">"Tree Conflict" design</a> document:</p>
<blockquote>
<p>XFAIL conflict from merge of add over versioned file</p>
<p>This test does a merge... | <p>As was mentioned in an older version (2009) of the <a href="http://svn.apache.org/repos/asf/subversion/trunk/notes/tree-conflicts/design-overview.txt" rel="noreferrer">"Tree Conflict" design</a> document:</p> <blockquote> <p>XFAIL conflict from merge of add over versioned file</p> <p>This test does a merge... | 63, 717, 28636 | merge, svn, tree-conflict | <h1>SVN how to resolve new tree conflicts when file is added on two branches</h1>
<p>When merging a couple of branches (using SVN 1.6.1) where a file has been added on both branches (and then worked on in those separate branches) I'm getting one of the new tree conflicts:</p>
<pre><code> C foo.txt
> local ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,232 | svn | # SVN how to resolve new tree conflicts when file is added on two branches
When merging a couple of branches (using SVN 1.6.1) where a file has been added on both branches (and then worked on in those separate branches) I'm getting one of the new tree conflicts:
```
C foo.txt
> local obstruction, incoming a... | As was mentioned in an older version (2009) of the ["Tree Conflict" design](http://svn.apache.org/repos/asf/subversion/trunk/notes/tree-conflicts/design-overview.txt) document:
> XFAIL conflict from merge of add over versioned file
>
> This test does a merge which **brings a file addition without history onto an
> exi... |
2078094 | SVN server for Mac OSX | 48 | 2010-01-16 16:32:29 | <p>I used to use Visual SVN on Windows. Now I am on Mac OSX.</p>
<p>Does anyone know of an SVN server for MAC OSX which is as easy to use as Visual SVN on Windows? I don't want to be typing in console commands, I'd like a nice and simple UI :-)</p>
<p>Cheers</p>
| 64,333 | 61,311 | 2018-05-09 23:58:49 | 10,039,004 | 40 | 2012-04-06 04:05:35 | 777,982 | 2014-12-20 17:22:03 | https://stackoverflow.com/q/2078094 | https://stackoverflow.com/a/10039004 | <p>Mac OSX LION and Snow Leopard comes with SVN Server by default. <a href="http://developer.apple.com/library/mac/#recipes/xcode_help-repositories_organizer/articles/SettingupaSubversionRepositoryfromtheCommandLine.html#//apple_ref/doc/uid/TP40010350-CH3-SW1" rel="noreferrer">An easy tutorial can be found here</a></p>... | <p>Mac OSX LION and Snow Leopard comes with SVN Server by default. <a href="http://developer.apple.com/library/mac/#recipes/xcode_help-repositories_organizer/articles/SettingupaSubversionRepositoryfromtheCommandLine.html#//apple_ref/doc/uid/TP40010350-CH3-SW1" rel="noreferrer">An easy tutorial can be found here</a></p>... | 63, 369 | macos, svn | <h1>SVN server for Mac OSX</h1>
<p>I used to use Visual SVN on Windows. Now I am on Mac OSX.</p>
<p>Does anyone know of an SVN server for MAC OSX which is as easy to use as Visual SVN on Windows? I don't want to be typing in console commands, I'd like a nice and simple UI :-)</p>
<p>Cheers</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,234 | svn | # SVN server for Mac OSX
I used to use Visual SVN on Windows. Now I am on Mac OSX.
Does anyone know of an SVN server for MAC OSX which is as easy to use as Visual SVN on Windows? I don't want to be typing in console commands, I'd like a nice and simple UI :-)
Cheers | Mac OSX LION and Snow Leopard comes with SVN Server by default. [An easy tutorial can be found here](http://developer.apple.com/library/mac/#recipes/xcode_help-repositories_organizer/articles/SettingupaSubversionRepositoryfromtheCommandLine.html#//apple_ref/doc/uid/TP40010350-CH3-SW1)
Basically you will be using comma... |
684953 | How to get latest revision number from SharpSVN? | 31 | 2009-03-26 08:36:38 | <p>How to get latest revision number using SharpSVN?</p>
| 17,213 | 38,940 | 2014-07-27 23:11:13 | 685,010 | 40 | 2009-03-26 09:08:15 | 2,094 | 2009-03-26 09:08:15 | https://stackoverflow.com/q/684953 | https://stackoverflow.com/a/685010 | <p>The least expensive way to retrieve the head revision from a repository
is the Info command.</p>
<pre><code>using(SvnClient client = new SvnClient())
{
SvnInfoEventArgs info;
Uri repos = new Uri("http://my.server/svn/repos");
client.GetInfo(repos, out info);
Console.WriteLine(string.Format("The last r... | <p>The least expensive way to retrieve the head revision from a repository is the Info command.</p> <pre><code>using(SvnClient client = new SvnClient()) { SvnInfoEventArgs info; Uri repos = new Uri("http://my.server/svn/repos"); client.GetInfo(repos, out info); Console.WriteLine(string.Format("The last r... | 9, 63, 16557 | c#, sharpsvn, svn | <h1>How to get latest revision number from SharpSVN?</h1>
<p>How to get latest revision number using SharpSVN?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,237 | svn | # How to get latest revision number from SharpSVN?
How to get latest revision number using SharpSVN? | The least expensive way to retrieve the head revision from a repository
is the Info command.
```
using(SvnClient client = new SvnClient())
{
SvnInfoEventArgs info;
Uri repos = new Uri("http://my.server/svn/repos");
client.GetInfo(repos, out info);
Console.WriteLine(string.Format("The last revision of {0}... |
8186468 | How to view all revisions in TortoiseSVN? | 28 | 2011-11-18 17:32:15 | <p>The TortoiseSVN "Show Log" option filters the revisions by date. It's cumbersome to alter those dates manually. How to view all revisions with minimal hassle?</p>
| 34,237 | 48,465 | 2020-07-28 09:28:21 | 8,186,535 | 40 | 2011-11-18 17:37:08 | 564,083 | 2011-11-18 17:47:38 | https://stackoverflow.com/q/8186468 | https://stackoverflow.com/a/8186535 | <p>You <em>must</em> perform this at the root folder of you Repository. </p>
<ul>
<li>Uncheck `Stop on copy/rename</li>
<li>Check <code>Include merged revisions</code></li>
<li>At the bottom of the show Log dialog box, press the <code>show all</code> button. </li>
</ul>
<p>Doing that will set the date range for you ... | <p>You <em>must</em> perform this at the root folder of you Repository. </p> <ul> <li>Uncheck `Stop on copy/rename</li> <li>Check <code>Include merged revisions</code></li> <li>At the bottom of the show Log dialog box, press the <code>show all</code> button. </li> </ul> <p>Doing that will set the date range for you ... | 63, 656, 942 | logging, svn, tortoisesvn | <h1>How to view all revisions in TortoiseSVN?</h1>
<p>The TortoiseSVN "Show Log" option filters the revisions by date. It's cumbersome to alter those dates manually. How to view all revisions with minimal hassle?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,238 | svn | # How to view all revisions in TortoiseSVN?
The TortoiseSVN "Show Log" option filters the revisions by date. It's cumbersome to alter those dates manually. How to view all revisions with minimal hassle? | You *must* perform this at the root folder of you Repository.
- Uncheck `Stop on copy/rename
- Check `Include merged revisions`
- At the bottom of the show Log dialog box, press the `show all` button.
Doing that will set the date range for you also.

D... |
6390396 | How do you remove a file from a subversion changelist? | 27 | 2011-06-17 18:49:44 | <p>I had a file in a subversion changelist that I later reverted. It is now still listed in the changelist even though it has no modification. How do I get rid of this changelist?</p>
<pre><code>$ svn status
--- Changelist 'search jsps - don't delete':
atlassian-jira/secure/views/navigator/navigator.jsp
</cod... | 18,388 | 266,531 | 2012-10-15 09:31:35 | 6,390,435 | 40 | 2011-06-17 18:52:42 | 35,070 | 2012-10-15 09:31:35 | https://stackoverflow.com/q/6390396 | https://stackoverflow.com/a/6390435 | <p>Changelists are separate from the regular "commit only new and marked stuff" policy. Explicitely removing the file from all changelists should work.</p>
<pre><code>svn changelist --remove atlassian-jira/secure/views/navigator/navigator.jsp
</code></pre>
<p>To remove all files from all changelists, pass the top dir... | <p>Changelists are separate from the regular "commit only new and marked stuff" policy. Explicitely removing the file from all changelists should work.</p> <pre><code>svn changelist --remove atlassian-jira/secure/views/navigator/navigator.jsp </code></pre> <p>To remove all files from all changelists, pass the top dir... | 63, 41288 | changelist, svn | <h1>How do you remove a file from a subversion changelist?</h1>
<p>I had a file in a subversion changelist that I later reverted. It is now still listed in the changelist even though it has no modification. How do I get rid of this changelist?</p>
<pre><code>$ svn status
--- Changelist 'search jsps - don't delete':
... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,239 | svn | # How do you remove a file from a subversion changelist?
I had a file in a subversion changelist that I later reverted. It is now still listed in the changelist even though it has no modification. How do I get rid of this changelist?
```
$ svn status
--- Changelist 'search jsps - don't delete':
atlassian-jir... | Changelists are separate from the regular "commit only new and marked stuff" policy. Explicitely removing the file from all changelists should work.
```
svn changelist --remove atlassian-jira/secure/views/navigator/navigator.jsp
```
To remove all files from all changelists, pass the top directory of the repository, l... |
1308791 | Subversion: Can I checkout, modify, and then make it a branch? | 79 | 2009-08-20 21:02:41 | <p>I did a checkout from my trunk to a local DIR and made lots of local changes there. Now I don't want to commit it back to the trunk, but I'd rather make a branch from this local version. Is that possible?</p>
<p>Can I just copy the trunk to a branch, and then <code>cd DIR</code> and <code>svn switch</code> to the b... | 30,121 | 60,628 | 2017-11-10 20:34:12 | 1,308,830 | 39 | 2009-08-20 21:09:20 | 136,264 | 2009-08-20 21:09:20 | https://stackoverflow.com/q/1308791 | https://stackoverflow.com/a/1308830 | <p>According to its command line help svn copy can copy from a directory to a repository URL. So you should be able to copy your working copy to the branch, e.g.:</p>
<pre><code>svn copy working_directory url_to_branch
</code></pre>
| <p>According to its command line help svn copy can copy from a directory to a repository URL. So you should be able to copy your working copy to the branch, e.g.:</p> <pre><code>svn copy working_directory url_to_branch </code></pre> | 63, 1879, 65722 | branch, svn, svn-checkout | <h1>Subversion: Can I checkout, modify, and then make it a branch?</h1>
<p>I did a checkout from my trunk to a local DIR and made lots of local changes there. Now I don't want to commit it back to the trunk, but I'd rather make a branch from this local version. Is that possible?</p>
<p>Can I just copy the trunk to a b... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,240 | svn | # Subversion: Can I checkout, modify, and then make it a branch?
I did a checkout from my trunk to a local DIR and made lots of local changes there. Now I don't want to commit it back to the trunk, but I'd rather make a branch from this local version. Is that possible?
Can I just copy the trunk to a branch, and then ... | According to its command line help svn copy can copy from a directory to a repository URL. So you should be able to copy your working copy to the branch, e.g.:
```
svn copy working_directory url_to_branch
``` |
11538510 | Storyboards and SVN conflicts | 43 | 2012-07-18 09:40:43 | <p>This is a problem we never had to deal with until storyboards were introduced - Whenever there was a chance of conflict in UI, we just made sure that no 2 developers ever worked on the same XIB file simultaneously. The reason we refrained from resolving XIB conflicts is that there may be problematic side-effects (XI... | 10,907 | 968,422 | 2014-10-07 04:43:58 | 11,579,026 | 39 | 2012-07-20 12:05:07 | 1,298,400 | 2012-07-20 12:30:19 | https://stackoverflow.com/q/11538510 | https://stackoverflow.com/a/11579026 | <p>Break up your storyboard into multiple storyboards.</p>
<p>There is no reason for your app to contain only one storyboard. Break your storyboard up into module storyboards. You can use <code>+storyboardWithName:bundle:</code> to load storyboard modules.</p>
<p>See: <a href="http://robsprogramknowledge.blogspot.com... | <p>Break up your storyboard into multiple storyboards.</p> <p>There is no reason for your app to contain only one storyboard. Break your storyboard up into module storyboards. You can use <code>+storyboardWithName:bundle:</code> to load storyboard modules.</p> <p>See: <a href="http://robsprogramknowledge.blogspot.com... | 63, 17533, 58338 | ios, storyboard, svn | <h1>Storyboards and SVN conflicts</h1>
<p>This is a problem we never had to deal with until storyboards were introduced - Whenever there was a chance of conflict in UI, we just made sure that no 2 developers ever worked on the same XIB file simultaneously. The reason we refrained from resolving XIB conflicts is that th... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,242 | svn | # Storyboards and SVN conflicts
This is a problem we never had to deal with until storyboards were introduced - Whenever there was a chance of conflict in UI, we just made sure that no 2 developers ever worked on the same XIB file simultaneously. The reason we refrained from resolving XIB conflicts is that there may b... | Break up your storyboard into multiple storyboards.
There is no reason for your app to contain only one storyboard. Break your storyboard up into module storyboards. You can use `+storyboardWithName:bundle:` to load storyboard modules.
See: [UIStoryboard Best Practices](http://robsprogramknowledge.blogspot.com/2012/0... |
464384 | SVN pre-commit hook for avoiding changes to tags subdirectories | 41 | 2009-01-21 07:59:06 | <p>Is there anybody who has clear instructions on how to add a pre-commit hook that avoids changes to tags subdirectories?</p>
<p>I already searched the internet quite a bit. I found this link: <a href="https://metacpan.org/pod/SVN::Hooks::DenyChanges" rel="noreferrer">SVN::Hooks::DenyChanges</a> , but I can't seem to... | 57,223 | 40,064 | 2016-05-14 00:02:13 | 648,751 | 39 | 2009-03-15 22:58:40 | 72,114 | 2009-03-15 22:58:40 | https://stackoverflow.com/q/464384 | https://stackoverflow.com/a/648751 | <p>I don't have enough reputation to "comment" on Raim's answer above, but his worked great, with one exception, his grep pattern is wrong.</p>
<p>I simply used the below as my pre-commit hook (I didn't have an existing one, you'd need to merge in that case):</p>
<pre><code>#!/bin/sh
REPOS="$1"
TXN="$2"
SVNLOOK=/op... | <p>I don't have enough reputation to "comment" on Raim's answer above, but his worked great, with one exception, his grep pattern is wrong.</p> <p>I simply used the below as my pre-commit hook (I didn't have an existing one, you'd need to merge in that case):</p> <pre><code>#!/bin/sh REPOS="$1" TXN="$2" SVNLOOK=/op... | 63, 115, 14000, 64649 | pre-commit, svn, svn-hooks, tags | <h1>SVN pre-commit hook for avoiding changes to tags subdirectories</h1>
<p>Is there anybody who has clear instructions on how to add a pre-commit hook that avoids changes to tags subdirectories?</p>
<p>I already searched the internet quite a bit. I found this link: <a href="https://metacpan.org/pod/SVN::Hooks::DenyCh... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,243 | svn | # SVN pre-commit hook for avoiding changes to tags subdirectories
Is there anybody who has clear instructions on how to add a pre-commit hook that avoids changes to tags subdirectories?
I already searched the internet quite a bit. I found this link: [SVN::Hooks::DenyChanges](https://metacpan.org/pod/SVN::Hooks::DenyC... | I don't have enough reputation to "comment" on Raim's answer above, but his worked great, with one exception, his grep pattern is wrong.
I simply used the below as my pre-commit hook (I didn't have an existing one, you'd need to merge in that case):
```
#!/bin/sh
REPOS="$1"
TXN="$2"
SVNLOOK=/opt/local/bin/svnlook
... |
678437 | SVN in-place import and checkout | 28 | 2009-03-24 17:34:55 | <p>Using the Linux command line and <a href="http://en.wikipedia.org/wiki/Apache_Subversion" rel="nofollow noreferrer">Subversion</a>, is it possible to take a directory and add version control to it?</p>
<p>Basically, I want to import the directory into a newly created repository, but also have the directory be a wor... | 15,289 | 56,225 | 2015-11-11 22:26:02 | 678,478 | 39 | 2009-03-24 17:44:03 | 74,013 | 2015-11-01 19:02:09 | https://stackoverflow.com/q/678437 | https://stackoverflow.com/a/678478 | <p>Let's say you've used svnadmin to create a repository at /svn/foo/mydirname, and you want to version control /home/user/mydirname (is that what you mean?).</p>
<p>Then do the following:</p>
<pre><code>cd /home/user/mydirname
svn co file:///svn/foo/mydirname . #This only creates the ".svn" folder for version contro... | <p>Let's say you've used svnadmin to create a repository at /svn/foo/mydirname, and you want to version control /home/user/mydirname (is that what you mean?).</p> <p>Then do the following:</p> <pre><code>cd /home/user/mydirname svn co file:///svn/foo/mydirname . #This only creates the ".svn" folder for version contro... | 58, 63, 456 | linux, svn, version-control | <h1>SVN in-place import and checkout</h1>
<p>Using the Linux command line and <a href="http://en.wikipedia.org/wiki/Apache_Subversion" rel="nofollow noreferrer">Subversion</a>, is it possible to take a directory and add version control to it?</p>
<p>Basically, I want to import the directory into a newly created reposi... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,244 | svn | # SVN in-place import and checkout
Using the Linux command line and [Subversion](http://en.wikipedia.org/wiki/Apache_Subversion), is it possible to take a directory and add version control to it?
Basically, I want to import the directory into a newly created repository, but also have the directory be a working copy w... | Let's say you've used svnadmin to create a repository at /svn/foo/mydirname, and you want to version control /home/user/mydirname (is that what you mean?).
Then do the following:
```
cd /home/user/mydirname
svn co file:///svn/foo/mydirname . #This only creates the ".svn" folder for version control
svn add ./* ... |
3607590 | Best way to link Redmine issue to SVN revision | 25 | 2010-08-31 09:12:26 | <p>We are using Redmine for issue and bug tracking. We added SVN integration but, by doing this, it just shows SVN revisions in activity. </p>
<p>It would be great to see all SVN changes caused by a bug or issue. But it does not seem to be possible.</p>
<p>Is there a way to do that? If not Redmine, which is the b... | 30,469 | 150,370 | 2013-02-15 15:55:46 | 3,607,628 | 39 | 2010-08-31 09:17:07 | 279,308 | 2011-12-08 17:09:11 | https://stackoverflow.com/q/3607590 | https://stackoverflow.com/a/3607628 | <p>We add the issue number in svn commit message and it's recognized automatically.</p>
<pre><code>svn ci -m "incorrect encoding fixed (refs #2345)"
</code></pre>
<p>Later you'll be able to see it in the issue #2345. It doesn't show up right away, I guess redmine checks periodically for repository changes - but if yo... | <p>We add the issue number in svn commit message and it's recognized automatically.</p> <pre><code>svn ci -m "incorrect encoding fixed (refs #2345)" </code></pre> <p>Later you'll be able to see it in the issue #2345. It doesn't show up right away, I guess redmine checks periodically for repository changes - but if yo... | 63, 1549, 12495 | bug-tracking, redmine, svn | <h1>Best way to link Redmine issue to SVN revision</h1>
<p>We are using Redmine for issue and bug tracking. We added SVN integration but, by doing this, it just shows SVN revisions in activity. </p>
<p>It would be great to see all SVN changes caused by a bug or issue. But it does not seem to be possible.</p>
<p>Is... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,245 | svn | # Best way to link Redmine issue to SVN revision
We are using Redmine for issue and bug tracking. We added SVN integration but, by doing this, it just shows SVN revisions in activity.
It would be great to see all SVN changes caused by a bug or issue. But it does not seem to be possible.
Is there a way to do that? If... | We add the issue number in svn commit message and it's recognized automatically.
```
svn ci -m "incorrect encoding fixed (refs #2345)"
```
Later you'll be able to see it in the issue #2345. It doesn't show up right away, I guess redmine checks periodically for repository changes - but if you go to `Repository` tab an... |
6958040 | Add files to SVN then delete before commit | 23 | 2011-08-05 14:37:24 | <p>I guess I was careless.</p>
<p>I added a bunch of files to svn with <code>svn add</code>,
then I saw a few files added that I didn't want so I deleted them with <code>rm</code>.</p>
<p>Now I can't commit anymore because the commit is missing files. I tried svn cleanup but it didn't help.</p>
<p>My working option ... | 24,609 | 6,367 | 2015-10-29 02:30:20 | 6,958,104 | 39 | 2011-08-05 14:41:04 | 235,524 | 2011-08-05 14:41:04 | https://stackoverflow.com/q/6958040 | https://stackoverflow.com/a/6958104 | <p>As I understand it you have this situation:</p>
<pre><code>$ touch foo
$ svn add foo
A foo
$ rm foo
$ svn ci
svn: Commit failed (details follow):
svn: 'foo' is scheduled for addition, but is missing
</code></pre>
<p>So to fix it do this: (thanks Linus!)</p>
<pre><code>$ svn revert foo
Reverted 'foo'
</cod... | <p>As I understand it you have this situation:</p> <pre><code>$ touch foo $ svn add foo A foo $ rm foo $ svn ci svn: Commit failed (details follow): svn: 'foo' is scheduled for addition, but is missing </code></pre> <p>So to fix it do this: (thanks Linus!)</p> <pre><code>$ svn revert foo Reverted 'foo' </cod... | 63, 5766, 37510 | delete-file, svn, undo | <h1>Add files to SVN then delete before commit</h1>
<p>I guess I was careless.</p>
<p>I added a bunch of files to svn with <code>svn add</code>,
then I saw a few files added that I didn't want so I deleted them with <code>rm</code>.</p>
<p>Now I can't commit anymore because the commit is missing files. I tried svn cl... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,246 | svn | # Add files to SVN then delete before commit
I guess I was careless.
I added a bunch of files to svn with `svn add`,
then I saw a few files added that I didn't want so I deleted them with `rm`.
Now I can't commit anymore because the commit is missing files. I tried svn cleanup but it didn't help.
My working option ... | As I understand it you have this situation:
```
$ touch foo
$ svn add foo
A foo
$ rm foo
$ svn ci
svn: Commit failed (details follow):
svn: 'foo' is scheduled for addition, but is missing
```
So to fix it do this: (thanks Linus!)
```
$ svn revert foo
Reverted 'foo'
```
or you can do this:
```
$ touch foo
$... |
4313747 | How to change SVN authentication details in AnkhSVN in Visual Studio 2010? | 23 | 2010-11-30 12:28:46 | <p>I want to change the username and password for SVN in Visual Studio 2010 AnkhSVN plugin. How can i do that?</p>
| 15,363 | 250,524 | 2019-01-04 08:56:31 | 4,313,795 | 39 | 2010-11-30 12:35:00 | 250,524 | 2012-08-27 06:42:51 | https://stackoverflow.com/q/4313747 | https://stackoverflow.com/a/4313795 | <p>Found it. To clear the cached username/passwords you can go to:</p>
<p><code>Tools</code> > <code>Options</code> > <code>Source Control</code> > <code>Subversion Environment</code> > <code>Authentication Cache</code><br /></p>
| <p>Found it. To clear the cached username/passwords you can go to:</p> <p><code>Tools</code> > <code>Options</code> > <code>Source Control</code> > <code>Subversion Environment</code> > <code>Authentication Cache</code><br /></p> | 63, 2018, 14456 | ankhsvn, svn, visual-studio-2010 | <h1>How to change SVN authentication details in AnkhSVN in Visual Studio 2010?</h1>
<p>I want to change the username and password for SVN in Visual Studio 2010 AnkhSVN plugin. How can i do that?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,247 | svn | # How to change SVN authentication details in AnkhSVN in Visual Studio 2010?
I want to change the username and password for SVN in Visual Studio 2010 AnkhSVN plugin. How can i do that? | Found it. To clear the cached username/passwords you can go to:
`Tools` > `Options` > `Source Control` > `Subversion Environment` > `Authentication Cache` |
10879944 | Undo check out of subfolder in TortoiseSVN | 21 | 2012-06-04 10:40:13 | <hr>
<p><em>How do I "un-checkout" a <strong>subfolder</strong> using TortoiseSVN?</em></p>
<hr>
<p>What have I tried:</p>
<ul>
<li><a href="http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMessageId=964069" rel="nofollow noreferrer">Delete the entire subfolder</a></li>
<li><a href="http://torto... | 20,501 | 419,956 | 2017-11-09 18:34:01 | 10,880,045 | 39 | 2012-06-04 10:49:11 | 1,178,189 | 2012-06-04 10:56:00 | https://stackoverflow.com/q/10879944 | https://stackoverflow.com/a/10880045 | <p>In SVN 1.7 you can do <code>svn up --set-depth exclude some-feature-branch3</code> (not sure if you can do it in SVN 1.6).</p>
<p>In Tortoise you can right click on <code>some-feature-branch3</code> -> 'Update to Revision' -> 'Update Depth: Exclude' -> 'Make Depth Sticky'.</p>
<p>If you can't do it in 1.6 you can ... | <p>In SVN 1.7 you can do <code>svn up --set-depth exclude some-feature-branch3</code> (not sure if you can do it in SVN 1.6).</p> <p>In Tortoise you can right click on <code>some-feature-branch3</code> -> 'Update to Revision' -> 'Update Depth: Exclude' -> 'Make Depth Sticky'.</p> <p>If you can't do it in 1.6 you can ... | 63, 656 | svn, tortoisesvn | <h1>Undo check out of subfolder in TortoiseSVN</h1>
<hr>
<p><em>How do I "un-checkout" a <strong>subfolder</strong> using TortoiseSVN?</em></p>
<hr>
<p>What have I tried:</p>
<ul>
<li><a href="http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMessageId=964069" rel="nofollow noreferrer">Delete the... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,249 | svn | # Undo check out of subfolder in TortoiseSVN
---
*How do I "un-checkout" a **subfolder** using TortoiseSVN?*
---
What have I tried:
- [Delete the entire subfolder](http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMessageId=964069)
- [Export-in-place](http://tortoisesvn.net/docs/release/TortoiseSVN_... | In SVN 1.7 you can do `svn up --set-depth exclude some-feature-branch3` (not sure if you can do it in SVN 1.6).
In Tortoise you can right click on `some-feature-branch3` -> 'Update to Revision' -> 'Update Depth: Exclude' -> 'Make Depth Sticky'.
If you can't do it in 1.6 you can do the same trick only with depth `empt... |
1109723 | Subversion resolve all conflicts quickly | 17 | 2009-07-10 14:00:36 | <p>When I have several conflicts, is there a way to resolve them all by just telling SVN to keep the version that is in the repository? Unfortunately, we're still using 1.4.</p>
| 23,942 | 105,484 | 2020-02-27 10:43:43 | 1,109,739 | 39 | 2009-07-10 14:03:29 | 135,178 | 2009-07-10 14:10:59 | https://stackoverflow.com/q/1109723 | https://stackoverflow.com/a/1109739 | <p>I believe if you run the command <code>svn revert . -R</code>, you basically undo all changes to your working copy. If there are conflicted files, SVN tosses out your changes and uses the revision you've most recently updated to.</p>
<p>Of course, this also gets rid of changes to files that aren't conflicted.</p>
| <p>I believe if you run the command <code>svn revert . -R</code>, you basically undo all changes to your working copy. If there are conflicted files, SVN tosses out your changes and uses the revision you've most recently updated to.</p> <p>Of course, this also gets rid of changes to files that aren't conflicted.</p> | 63, 3146, 29589 | conflict, resolve, svn | <h1>Subversion resolve all conflicts quickly</h1>
<p>When I have several conflicts, is there a way to resolve them all by just telling SVN to keep the version that is in the repository? Unfortunately, we're still using 1.4.</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,250 | svn | # Subversion resolve all conflicts quickly
When I have several conflicts, is there a way to resolve them all by just telling SVN to keep the version that is in the repository? Unfortunately, we're still using 1.4. | I believe if you run the command `svn revert . -R`, you basically undo all changes to your working copy. If there are conflicted files, SVN tosses out your changes and uses the revision you've most recently updated to.
Of course, this also gets rid of changes to files that aren't conflicted. |
1541991 | Adding a single file to a Subversion repository but not other files along the path | 15 | 2009-10-09 05:47:17 | <p>The context is that I have an on off-the-shelf CMS which I want to make customizations to; so I want to keep the files I modify under version control, but I don't see the need to put the whole file tree under version control. </p>
<p>My problem is that I need to add a file to be kept under version control which is ... | 21,188 | 77,533 | 2013-03-19 22:11:06 | 1,542,041 | 39 | 2009-10-09 06:04:29 | 170,974 | 2009-10-09 06:04:29 | https://stackoverflow.com/q/1541991 | https://stackoverflow.com/a/1542041 | <p>You should add the folder with the option "--non-recursive":</p>
<pre><code>svn add --non-recursive folder1/folder2
</code></pre>
| <p>You should add the folder with the option "--non-recursive":</p> <pre><code>svn add --non-recursive folder1/folder2 </code></pre> | 63, 456 | svn, version-control | <h1>Adding a single file to a Subversion repository but not other files along the path</h1>
<p>The context is that I have an on off-the-shelf CMS which I want to make customizations to; so I want to keep the files I modify under version control, but I don't see the need to put the whole file tree under version control.... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,251 | svn | # Adding a single file to a Subversion repository but not other files along the path
The context is that I have an on off-the-shelf CMS which I want to make customizations to; so I want to keep the files I modify under version control, but I don't see the need to put the whole file tree under version control.
My prob... | You should add the folder with the option "--non-recursive":
```
svn add --non-recursive folder1/folder2
``` |
1761513 | Multiple SVN Repositories or single company repository | 53 | 2009-11-19 07:30:05 | <p>Should we have one single repository for all the company, which contains many development projects, or a repository per project? Any ideas on experience / best practice? </p>
| 11,489 | 214,383 | 2013-09-21 19:16:18 | 1,762,051 | 38 | 2009-11-19 09:37:38 | 50,962 | 2009-11-19 09:55:19 | https://stackoverflow.com/q/1761513 | https://stackoverflow.com/a/1762051 | <p>Personally I would definitely prefer separate repository per project. There are several reasons:</p>
<ol>
<li><p><strong>Revision numbers</strong>. Each project repository will have separate revisions sequence.</p></li>
<li><p><strong>Granularity</strong>. With repository per project you just can't make a commit in... | <p>Personally I would definitely prefer separate repository per project. There are several reasons:</p> <ol> <li><p><strong>Revision numbers</strong>. Each project repository will have separate revisions sequence.</p></li> <li><p><strong>Granularity</strong>. With repository per project you just can't make a commit in... | 63, 7330 | repository, svn | <h1>Multiple SVN Repositories or single company repository</h1>
<p>Should we have one single repository for all the company, which contains many development projects, or a repository per project? Any ideas on experience / best practice? </p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,252 | svn | # Multiple SVN Repositories or single company repository
Should we have one single repository for all the company, which contains many development projects, or a repository per project? Any ideas on experience / best practice? | Personally I would definitely prefer separate repository per project. There are several reasons:
1. **Revision numbers**. Each project repository will have separate revisions sequence.
2. **Granularity**. With repository per project you just can't make a commit into different projects having the same revision number. ... |
6575325 | What are the differences between merging a range of revisions vs. reintegrate in SVN? | 41 | 2011-07-04 19:21:39 | <p>I have read some documentation and blogs about the difference between merge a range of revisions and reintegrate but I didn't get one thing.</p>
<p>What is a difference in merging if I choose one or other way for merging from branch to trunk? Why merge a range of revisions doesn't work in some cases but reintegrate... | 15,753 | 188,826 | 2014-08-02 00:25:42 | 6,575,565 | 38 | 2011-07-04 19:54:50 | null | 2014-04-21 21:28:29 | https://stackoverflow.com/q/6575325 | https://stackoverflow.com/a/6575565 | <p>For one thing, the way that SVN calculates the differences to apply is different between the two methods. Normally, when you apply a range of revisions X to Y from a trunk to the branch in cherry-picking fashion, for example, SVN calculates the differences between the revisions of X to Y in the trunk, and applies t... | <p>For one thing, the way that SVN calculates the differences to apply is different between the two methods. Normally, when you apply a range of revisions X to Y from a trunk to the branch in cherry-picking fashion, for example, SVN calculates the differences between the revisions of X to Y in the trunk, and applies t... | 63 | svn | <h1>What are the differences between merging a range of revisions vs. reintegrate in SVN?</h1>
<p>I have read some documentation and blogs about the difference between merge a range of revisions and reintegrate but I didn't get one thing.</p>
<p>What is a difference in merging if I choose one or other way for merging ... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,253 | svn | # What are the differences between merging a range of revisions vs. reintegrate in SVN?
I have read some documentation and blogs about the difference between merge a range of revisions and reintegrate but I didn't get one thing.
What is a difference in merging if I choose one or other way for merging from branch to t... | For one thing, the way that SVN calculates the differences to apply is different between the two methods. Normally, when you apply a range of revisions X to Y from a trunk to the branch in cherry-picking fashion, for example, SVN calculates the differences between the revisions of X to Y in the trunk, and applies those... |
126320 | Undoing specific revisions in Subversion | 33 | 2008-09-24 10:05:23 | <p>Suppose I have a set of commits in a repository folder...</p>
<pre><code>123 (250 new files, 137 changed files, 14 deleted files)
122 (150 changed files)
121 (renamed folder)
120 (90 changed files)
119 (115 changed files, 14 deleted files, 12 added files)
118 (113 changed files)
117 (10 changed files)
</code></pre>... | 17,776 | 4,200 | 2013-07-08 19:12:51 | 126,411 | 38 | 2008-09-24 10:34:52 | 6,918 | 2008-09-30 07:24:40 | https://stackoverflow.com/q/126320 | https://stackoverflow.com/a/126411 | <p>To undo revisions 118 and 120:</p>
<pre><code>svn up -r HEAD # get latest revision
svn merge -c -120 . # undo revision 120
svn merge -c -118 . # undo revision 118
svn commit # after solving problems (if any)
</code></pre>
<p>Also see the description in <a href="http://svnbook.red-bean.com/en/1.5/... | <p>To undo revisions 118 and 120:</p> <pre><code>svn up -r HEAD # get latest revision svn merge -c -120 . # undo revision 120 svn merge -c -118 . # undo revision 118 svn commit # after solving problems (if any) </code></pre> <p>Also see the description in <a href="http://svnbook.red-bean.com/en/1.5/... | 63, 5766, 36489 | cherry-pick, svn, undo | <h1>Undoing specific revisions in Subversion</h1>
<p>Suppose I have a set of commits in a repository folder...</p>
<pre><code>123 (250 new files, 137 changed files, 14 deleted files)
122 (150 changed files)
121 (renamed folder)
120 (90 changed files)
119 (115 changed files, 14 deleted files, 12 added files)
118 (113 c... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,256 | svn | # Undoing specific revisions in Subversion
Suppose I have a set of commits in a repository folder...
```
123 (250 new files, 137 changed files, 14 deleted files)
122 (150 changed files)
121 (renamed folder)
120 (90 changed files)
119 (115 changed files, 14 deleted files, 12 added files)
118 (113 changed files)
117 (1... | To undo revisions 118 and 120:
```
svn up -r HEAD # get latest revision
svn merge -c -120 . # undo revision 120
svn merge -c -118 . # undo revision 118
svn commit # after solving problems (if any)
```
Also see the description in [Undoing changes](http://svnbook.red-bean.com/en/1.5/svn.branchmerge.ba... |
4922389 | SVn help ignoring a folder: 'Explicit target required' | 26 | 2011-02-07 14:27:49 | <p>I am trying to get SVN to ignore a folder by typing:</p>
<pre><code>svn --username myusername propset svn:ignore MyFolder/mysubFolder
</code></pre>
<p>However, I am getting the following error message:</p>
<pre><code>svn: Explicit target required ('MyFolder/mysubFolder' interpreted as prop value)
</code></pre>
| 21,688 | 147,915 | 2016-01-08 05:56:40 | 4,922,810 | 38 | 2011-02-07 15:08:24 | 11,343 | 2011-02-07 15:08:24 | https://stackoverflow.com/q/4922389 | https://stackoverflow.com/a/4922810 | <p>You need to specify the directory where to apply the setting, which is most likely the current directory (<code>.</code>): </p>
<pre><code>svn --username myusername propset svn:ignore MyFolder/mysubFolder .
</code></pre>
| <p>You need to specify the directory where to apply the setting, which is most likely the current directory (<code>.</code>): </p> <pre><code>svn --username myusername propset svn:ignore MyFolder/mysubFolder . </code></pre> | 63, 391 | svn, terminal | <h1>SVn help ignoring a folder: 'Explicit target required'</h1>
<p>I am trying to get SVN to ignore a folder by typing:</p>
<pre><code>svn --username myusername propset svn:ignore MyFolder/mysubFolder
</code></pre>
<p>However, I am getting the following error message:</p>
<pre><code>svn: Explicit target required ('M... | q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,258 | svn | # SVn help ignoring a folder: 'Explicit target required'
I am trying to get SVN to ignore a folder by typing:
```
svn --username myusername propset svn:ignore MyFolder/mysubFolder
```
However, I am getting the following error message:
```
svn: Explicit target required ('MyFolder/mysubFolder' interpreted as prop val... | You need to specify the directory where to apply the setting, which is most likely the current directory (`.`):
```
svn --username myusername propset svn:ignore MyFolder/mysubFolder .
``` |
4294004 | Reading svn commit messages from the console | 25 | 2010-11-27 21:28:25 | <p>What's the command line way to get the commit messages for a given revision?</p>
| 24,986 | 189,456 | 2019-08-28 13:42:44 | 4,294,007 | 38 | 2010-11-27 21:29:46 | 432,745 | 2010-11-27 21:29:46 | https://stackoverflow.com/q/4294004 | https://stackoverflow.com/a/4294007 | <p>svn log — Display commit log messages. This should work with the switch -r or --revision to display commit message for a particular revision</p>
<pre><code>svn log --revision 16
</code></pre>
<ul>
<li><a href="http://svnbook.red-bean.com/en/1.0/re15.html" rel="noreferrer">http://svnbook.red-bean.com/en/1.0/re15.ht... | <p>svn log — Display commit log messages. This should work with the switch -r or --revision to display commit message for a particular revision</p> <pre><code>svn log --revision 16 </code></pre> <ul> <li><a href="http://svnbook.red-bean.com/en/1.0/re15.html" rel="noreferrer">http://svnbook.red-bean.com/en/1.0/re15.ht... | 63, 1231 | command-line, svn | <h1>Reading svn commit messages from the console</h1>
<p>What's the command line way to get the commit messages for a given revision?</p>
| q.PostTypeId = 1; a.PostTypeId = 2; EXISTS tag '%svn%'; a.Body contains code block; q.Score > 5; a.Score > 10 | 28,259 | svn | # Reading svn commit messages from the console
What's the command line way to get the commit messages for a given revision? | svn log — Display commit log messages. This should work with the switch -r or --revision to display commit message for a particular revision
```
svn log --revision 16
```
- <http://svnbook.red-bean.com/en/1.0/re15.html> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.