conflicts

Resolving SVN merge postponed conflicts recursively

I have a dev branch that hasn't been touched for a while. I merged the trunk into it to integrate many fixes/changes in the main line since it was branched out, but now I have many small conflicts (merge-left/merge-right). I want the latest trunk revision to be used to resolve each conflict. Is there a command I can run that will resolv...

resolving svn binary conflicts

I use svn for a project im working on with a couple of other developers. Svn works fine for source control however we are all ways getting conflicts when we commit the dlls. When i do i resolve the conflict (which deletes my dlls as the diff program cant handle binary files) then have to rebuild to commit. How are you meant to resolve c...

Darcs conflicts

I installed Darcs a few days ago and have a doubt. I am the only programmer and I usually work on two or three instances of the application, making new feautures. The problems cames because this instances modify the same source code file, so when I finished them and send to main repository they make a conflict. Is there any way to deal w...

How do I manage conflicts with git submodules?

I have a git superproject that references several submodules and I am trying to lock down a workflow for the rest of the my project members to work within. For this question, lets say my superproject is called supery and the submodule is called subby. (Then is a simplification of what I'm trying to do...I'm not actually using the branch...

How to set a default namespace for classes when there are two simlar classes in different namespaces

Ok, so since going to version 2.5 Nunit is causing me all sorts of problems because they introduced the static class Is into the nunit.framework namespace. It would be well and good if Rhino.Mocks and a few other frameworks did not also make use of an Is static class. So now if I upgrade to 2.5 most of my code that uses rhino mocks con...

ChangeConflictException in Linq to Sql non-concurrent updates

I'm using LINQ to SQL, and having a bit of an issue incrementing a view counter cross-connection. The teeny bit of code I'm using is: t = this.AppManager.ForumManager.GetThread(id); t.Views = t.Views + 1; this.AppManager.DB.SubmitChanges(); Now in my tests, I am running this multiple times, non-concurrently. There are a total of 4 c...

Android: View.setID(int id) programmatically - how to avoid ID conflicts?

I'm adding TextViews programmatically in a for-loop and add them to an ArrayList. How do I use TextView.setId(int id)? What Integer ID do I come up with so it doesn't conflict with other IDs? ...

Conflicts in Motools & Jquery In Joomla . Please HELP!

HI All, I read all the related post but i think i am missing something. My page structure is - 1.load Motools library in Joomla. code is JHTML::_('behavior.tooltip'); JHTML::_('behavior.mootools'); JHTML::_('behavior.formvalidation'); 2 Then load the Jquery library code is <script language="javascript" src="<?=$this->ba...

Using jquery plugins inside prettyPhoto

I have been trying to combine prettyPhoto and 'Simple Jquery Panorama Viewer' with little success (especially in IE!!). I have attempted to use the inline method with the panorama viewer in a hidden div, didn't work. So I tried pulling it through from a seperate page using iframes - didn't work. I am guessing there is a conflict between...

How to merge using Meld on Linux

Hi, I want to resolve some conflicts of an SVN file using Meld. I'm using the Head version and my version to resolve the conflicts. I am unable to find how to do the merge operation and resolve the conflicts. When i'm right clicking on the line, i just see copy, paste, cut, create patch copy to right, copy to left options. Is there any...

automating write conflict messages

is there any method to avoid the annoying write conflict messages by automating and hiding the process so that it doesn't appear as if the program is defective? there doesn't seem to be any point to these messages anyway as there is only one real choice which is to drop the changes. ...

git workflow: throwaway merges and git-rerere - what's the point?

Like most people new to Git, I've had my share of confusion trying to decipher the use cases applicable to git merge and git rebase. I think I've finally decided that, as far as the resulting working copy state, they give you the same thing. Also, they both result in the same conflicts. If this is incorrect, please provide an example ...

Have git rerere automatically mark files as resolved?

I'm using git rerere, and it is useful, but there is one problem: When it automatically resolves a file, it does not mark it as resolved (eg with git add). So if I run 'git mergetool', it opens up the file as if it still has all the conflicts in it. So far, I've made a small shell script which I can call, which scans all files marked a...

What do the colors when resolving conflicts in tortoise SVN signify?

I am just curious when I am resolving conflicts the red ones are the conflicts...while the yellow colour is the new code added...but then I see this orange color and white sort of blue text what do they mean? What exactly do colors in the tortoise svn while resolving conflicts signify....just out of curiosity ...

Resolving merge conflicts after restarting eclipse using subversive.

I did a merge yesterday using subversive in eclipse 3.6 but there are plenty of conflicts. I closed eclipse before I finished editing the conflicts and was hoping to resolve the conflicts today. However when I open eclipse again today, I can't resolve the conflicts anymore. The options appear in the right click menu are "Overwrite and...

Question about WarpMode enum

Hi ... There is tow enum by name "WarpMode" in System.Drawing.Drawing2D namespace the first include : Title , TitleFlipX , TitleFlipY , TitleFlipXY , Clamp and the second by include : Perspective , Bilinear We can't define tow enums in th same namespace by the same name ..!! why here we can ?? !! and How can I tell VS which e...