Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

311
votes
20answers
86k views

What do “branch”, “tag” and “trunk” really mean? [closed]

I've seen these words a lot around subversion (and I guess general repository) discussions. Myself I have been using svn for my projects the last few years, but I've never grasped the complete concept ...
62
votes
11answers
65k views

What is trunk, branch and tag in subversion?

What is a trunk, branch and tag in subversion and what are the best practices to use them. What tools I can use for subversion in Visual Studio 2008?
40
votes
2answers
14k views

Use TortoiseSVN to merge branch changes with the trunk

Using TortoiseSVN, I need to take changes I've done in a branch and then merge them with Trunk. I am the only developer on this project, so I know trunk hasn't changed. I am learning SVN so that ...
14
votes
6answers
1k views

Use Subversion Without Trunk

My team recently decided not to use the "trunk" branch that is typical of most subversion repository layouts. We found that at any given moment there was always a particular branch that functioned in ...
14
votes
2answers
4k views

SVN error when trying to merge from a branch

I'm trying to merge changes from a branch to the trunk, for a single file and a single revision. I'm using VisualSVN as the front-end. So I right-click the file, Visual SVN -> Merge, then select ...
7
votes
4answers
5k views

Problem reintegrating a branch into the trunk in Subversion 1.5

I'm trying to reintegrate a development branch into the trunk in my Subversion 1.5 repository. I merged all the changes from the trunk to the development branch prior to this operation. Now when I try ...
6
votes
4answers
1k views

Svn merging trunk and branches

I have a huge project. I need to make a branch - this will be version 2 of the project, but I also need to keep the trunk and change it in parallel with the branch 1 as bug fix to the version 1. I ...
6
votes
1answer
1k views

Merging from branch to trunk with 'Merge range of revisions'

I have merged in Subversion/TortoiseSVN like this a few times: Method A: 1) I change the trunk and commit. 2) I make other changes in a branch and commit. 3) In a working copy from trunk: I merge ...
5
votes
4answers
870 views

Can I update a branch from the trunk without performing a merge?

I probably just haven't thought this through, or perhaps I'm simply unaware of an already existing option in Subversion (I'm certainly no expert). I'm just wondering, if I've created a branch to ...
4
votes
1answer
137 views

Can I keep merging repeatedly from a branch to trunk with Subversion merge tracking?

We released version 1.0 and continue developing 2.0 in trunk. We created branches/1.0 for bug fixes related to the released version. Plan is: 2.0 development continues in trunk/ trunk/ contains new ...
4
votes
2answers
241 views

Branch a version in CVS

So i have a source tree that i want to clean up in CVS. What a really want is to branch the old stuff off, but never merge in back in. But so i can have an eclipse workspace to access and make some ...
3
votes
1answer
30 views

How to re-integrate a branch in tortoiseSVN

I have finally successfully created and worked in a branch. I have commited my changes to the branch. Now I want to re-integrate the work in the branch into the main working trunk. How do I do that in ...
3
votes
2answers
47 views

Bzr: Create a shared repository from an existing stand-alone repository

I have been using Bzr for version control of my project over the last few months. I am the sole developer, and currently I just have everything in a single local project directory, to which I commit ...
3
votes
4answers
167 views

When do I check out TRUNK vs the FULL PROJECT in an SVN repo?

Got a (hopefully small) question regarding SVN and checking out repos. Basically I see conflicting tutorials and suggestions regarding what to check out and when. Some will say: svn co ...
3
votes
1answer
296 views

svn create trunk and branches

I used Visual SVN Manager to create a repository, but I didn't create /trunk /branches and /tags at first. Now, I NEED to add these since the project has grown up ==> branching and merging is ...
3
votes
3answers
247 views

Is there any way to commit changes that I've made to my SVN checkout of trunk to a branch instead?

I just started working on some changes against trunk on an SVN repo, thinking they would be somewhat small. Now, I actually am beginning to realize that I probably should have just started a new ...
3
votes
5answers
332 views

Should you use branches in subversion if only one person is working on a project?

I'm just starting out using Subversion on a C# project. I am working on this project alone, yet I'm trying to treat is as if I was working in a group for my own learning experience. As I understand ...
3
votes
2answers
193 views

Making a tag into the new trunk in Subversion

We have a situation where we need to take a tag of our project and make it the new trunk. We have taken the existing trunk and made it into a separate branch. My question is this - once we made a ...
3
votes
2answers
123 views

Merge from PROD to HEAD or HEAD to PROD?

We have two branches: 1. HEAD - the latest version (AKA Trunc) 2. PROD - the released version When you fix bugs in the released version, which of these do you do: Fix it in PROD, then merge to HEAD ...
2
votes
1answer
161 views

git-svn: replacing trunk branch with another

How to replace the trunk branch with another in svn repository using git-svn tool?
2
votes
1answer
139 views

Can I (and how to) apply a patch created from trunk to a branch?

I was working on the trunk recently and the changed I did I thought others might need them so I created a patch just before committing. Now a fellow dev who was working on a branch (which comes from ...
2
votes
1answer
137 views

How can I sync my custom CodePlex Mercurial fork against the main trunk?

I've made a fork of some codeplex project. Done some extra code, etc and have even pulled my custom code into the source control repo. In those few weeks and months since i was working on my own ...
2
votes
2answers
240 views

SVN - Apply changes made on branch to trunk

I'm currently working in a web application development. Our company methodology is to work on the project trunk for as long as possible and switch to the branches only when necessary. However, in ...
2
votes
1answer
191 views

Can I make an alternative branch the trunk in fossil

Is it possible to change the tag on a branch to make it replace the trunk without merging? Update: I solved it, I also see now that it doesnt matter trunk is nothing more than a name, you can close ...
2
votes
3answers
482 views

Proper SVN use of branches and trunk

I have a question as to the proper use of the trunk and branches for my SVN projects. For my team's project we create 3 major releases each year and sometimes a minor release or two in between. At any ...
2
votes
2answers
409 views

How do I “merge forward” in svn?

For instance, suppose I have a branch that I want to update with the new stuff in trunk. I've always just merged trunk into the new branch, but I came across a somewhat different process that Divmod ...
2
votes
2answers
2k views

Tortoise SVN Merging - New Trunk to Branch

Let us say I have a trunk and I create a branch (branch A) of it on Sunday making Revision 10. On Monday I work on both branch A and the trunk (branch A is responsible for Revision 11,12,& 15 ...
1
vote
1answer
24 views

(svn) merging back the refactorings but not the whole branch, possible ?

I noticed a(n) (anti-)pattern in my team: We decide to implement a feature so we (svn) branch. While implementing the feature, we do refactorings that would benefit everyone if they could be merged ...
1
vote
1answer
46 views

SVN - Merge branch to trunk, overwrites some trunk changes / new features

So... I have a problem where I created a branch (0.1) and fixed a few things there, but meanwhile I was working on new things in trunk. Now I want to merge branch (0.1) to trunk and before commit I ...
1
vote
2answers
55 views

How to check the merges between branch and trunk in SVN?

I have committed many changes in branch , after merged to trunk. So I have done many commit, merge, commit operations. Now I am not sure that all was made correct. Can I check if I not missed merge ...
1
vote
1answer
34 views

How to fix a badly setup svn repo

I have an svn repo that was setup (not by me) without the recommended folders (/trunk, /branches, /tags) which was fine initially, but we are running into problems that really should be fixed in a ...
1
vote
1answer
59 views

CC-Mode 5.32.1 with Latest Emacs

I'm trying cc-mode 5.32.1 with Emacs trunk. When I compile I get these errors cc-mode.el:596:29:Error: Symbol's function definition is void: byte-compile-obsolete Compiling file ...
1
vote
1answer
237 views

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 ...
1
vote
1answer
160 views

SVN rebase branch from trunk

Hallo all. I have a java project using SVN as scm. I have the trunk line where I have the PRODUCTION_LINE and some branches for the next releases. When I found a bug in production I fix it on trunk ...
1
vote
1answer
316 views

SVN authz, path-based authentication on trunk / branch

I use authz files to restrict access to a svn server (projA, projB). I would like to use the same restrictions for the trunk and the branches. Is there a nice way of doing it, instead of copy/pasting ...
1
vote
2answers
366 views

Tagging sub-trunk directory when releasing with Maven (using SVN)

Here is my SVN structure : trunk / +- docs / +- dev / +- project-parent / +- project-war / releases / I would like the Maven release plugin to tag /trunk/dev/ to ...
1
vote
2answers
330 views

Using Trunk / Branches and Tag structure between multiple developers

I end up getting confused when it comes to Trunk / Branches and Tags. Following is my query: We have a team of developers working on a single project. The developers are often divided in groups and ...
1
vote
2answers
357 views

Running two projects (trunk & branch) at the same time in Eclipse

I was wondering if it's possible to run two projects at the same time in Eclipse, for example by using two different instances of JVM (if that makes any sense). A bit of the background: I have a ...
1
vote
1answer
295 views

How can I setup in Elastix 1.5 the “Monitor Trunk Failures” feature?

I dont know where to save the script or how to link it in this field. I found this script on a different website, and I feel that it would work fine for what I need it to do, just alert me via email ...
1
vote
1answer
221 views

What is the standard 'trunk' site equivalent for Mercurial?

We are moving to Mercurial from Subversion. With Subversion, we have http://trunk.myproduct.com for testing purposes. I am wondering what the standard name for a trunk-like site is for Mercurial. ...
1
vote
3answers
468 views

Create SVN branch from changes in trunk

I'm in a stupid situation: I have done some changes in a working copy of the TRUNK. Since the changes have not been tested, I'd like to transfer all the changes to a branch. According to the manual of ...
1
vote
1answer
140 views

How are deleted and renamed/moved files handled when merging a feature branch with trunk and reintegrating it back to the trunk in Subversion?

I've got a big-ish project that needs a lot of work on a new feature, so I planned on using a branch to do this work. I haven't had to do this before, and I just wanted to get assurance from an ...
1
vote
1answer
358 views

SVN view commits between tag and trunk

With SVN is there an easy way to get a list of all the commits between a tag (usually the most recent) and the current trunk, so you can see what (if anything) has changed? Likewise, can you do the ...
1
vote
4answers
1k views

Problem in SVN merging branches into trunk

I have a trunk (A) and two branches (B and C). When I merge A with C its OK, after I merge A with B, the previous C its overwriten and my trunk don't have the C changes. What I want is A + B + C into ...
0
votes
3answers
30 views

What is typically added to the trunk using svn

To my understanding it is only necessary to add files you work with once or regularly into the trunk. It seems wasteful and bulky to add files that never get touched to the trunk. Is this logic ...
0
votes
3answers
26 views

SVN : How to fix a commit erroneously made to the trunk instead of to a branch?

I recently created a maintenance/bug-fix branch in our SVN repository, in order to make stable releases while we will introduce new features on the trunk. This branch is called "4.2.x" Now, one ...
0
votes
1answer
76 views

How do you manage your release branch in SVN?

We use Subversion for our source control system and we do our mainline work in trunk. When we released our software we created a branch. When we need to upgrade our release I will merge revision ...
0
votes
1answer
68 views

Eclipse svn code changes notification plugin

I was wondering - is there a plugin for eclipse that will notify all the contributors to a certain svn project that someone has commited in trunk with some message containing the names of the changed ...
0
votes
2answers
64 views

Source code directly in trunk folder or in trunk/subfolder

Finally I am entering the world of revision control! I don't have any previous knowledge of Subversion, but have read most of the book, and I am currently installing Subversion and Trac. We will be ...
0
votes
0answers
26 views

how to sync all the trunk android apps from code google com

I think so many people would have got this doubt, how to sync all the trunk android apps in the code.google.com. I tried my level best googling in the stack overflow and google search, but every time ...

1 2