conflict

Save Conflict Error when trying to add new List Items at the time of list creation

We have created a Custom List template programmatically using Feature.xml, Element.xml, Schema.xml AllItems.aspx, and 3 aspx forms. We have a code behind file for each of these aspx files. i.e. for the AllItems.aspx, DispForm.aspx, EditForm.aspx and NewForm.aspx. Problematic file is AllItems.aspx. In the code behind for AllItems.aspx fi...

How can I mark a single file as unresolved after a failed merge in git?

Hi, at the moment I'm merging a very large project and unfortunately I have lots of conflicts. After merging some files I realized that I made merge errors in a specific file and now it is marked as resolved. How can I unresolve it in git in order to merge it again. I tried git reset --hard -- myFile.txt but it doesn't work. Regards,...

Why do I get conflicts when Merging a branch to the Trunk and then merging it back to the branch?

Lets say I have a feature branch named "branches/BigFeature". I want to push those changes to the Trunk, make some changes to Trunk and merge back it all back into the "BigFeature" branch so development can continue. My steps were to: Merge the latest changes in Trunk to branches/BigFeature. (Tortoise SVN -> Merge a range of revisio...

How to configure Beyond Compare 3 for Eclipse conflict resolution?

What is the correct parameters to get Beyond Compare 3 working with Eclipse/Subclipse conflict resolution? In Preferences > Team > SVN > Diff/Merge there's the option to specify an external program to resolve conflicts. The default parameters are: "${yours}" "${theirs}" "${base}" "${merged}" And it suggests TortoiseMerge settings of...

git rebase, keeping track of 'local' and 'remote'

When doing a git rebase, I often have difficulty working out what is happening with the 'local' and 'remote' when resolving conflicts. I sometimes have the impression that they swap sides from one commit to the next. This is probably (definitely) because I still haven't properly understood. When rebasing, who is 'local' and who is 'rem...

What's the simplest way to git a list of conflicted files?

I just need a plain list of conflicted files. Is there anything simpler than: git ls-files -u | cut -f 2 | sort -u or git ls-files -u | awk '{print $4}' | sort | uniq ? I guess I could set up a handy alias for that, just was wondering how pros do it. I'd use it to write shell loops e.g. to auto-resolve conflict etc.. Maybe replac...

What happens when Dan change text into 'aB' and John to 'abc'?

Imagine a very simple textdocument (text.txt) with as content just the letters 'ab'. This file has been check-in in a canonical (remote) repository. Two people have a local close of this repository and thus this file and start editing it. Dan changes the content to 'aB' (note the capital B) and John edits his version to 'abc'. Dan does ...

Do I use jQuery noconflict to avoid plugins conflict?

UPDATE: I've found that the jquery.bxslider plugin itself clones and appends/prepends the LIs causing the trouble. No solution to this though, except maybe using another script :( I'm having to jQuery plugins partially conflicting with each other, Boxslider (an image slider) and Colorbox (a lightbox). They both work, but the slider ...

Is git's merge conflict resolution more efficient than other SCMs and merge tools?

Is git's merge conflict resolution inherently more efficient than other SCMs (CVS,Subversion,etc.), and also standalone merge tools? If so, why? Clarification: here I'm more interested in the algorithm itself - is it any different from a plain diff3 method? Some tools claim to be smarter in that(e.g. Guiffy), is it worth plugging one in...

'git status' shows changes to be commited, but 'git push origin master' says 'Everything up-to-date'

I had some conflicts between my local repo and the remote repo. So, I did: git stash git pull origin master git stash apply // here i had merge conflicts, so i edited the files and did git add file1 git add file2 git commit Now when I do git status it shows a bunch of modified files, etc. But git push origin master says Everything...

Subversion conflict with a deleted file

I have a file that I have removed from subversion, however in the mean time someone else has updated this file and it now is in conflict. I have spoken to them and we are agreed that it should be deleted. Any ideas how we can stop it being in conflict? ...

<string.h> conflicting with my own String.h

Hi! I have a project that was compiling ok within g++(I can't see the version right now) and now on xCode it is not. I think that I got the problem now... I have a String.h file in my project and it seems tha the xCode compiler(that is gcc) is trying to add my own string file from the < cstring >... I am not sure of it, but take a look ...

jQuery / prototype conflict

I am using a jQuery hoverIntent.js script for a mega drop down menu system inspired by Son Tonaka's mega drop down w/CSS & jQuery sohtanaka.com/web-design/mega-drop-downs-w-css-jquery. My page includes a prototype.js script that is inserted by a 3rd party supplier (this is a real estate website that loads property search and lead manage...

jQuery conflict between Coda Slider and Tabs

Hi, does anybody have any idea what the conflict is between these two jQuery scripts? I'm using the horizontal Coda slider, for the main homepage feature, and I'm also using some jQuery for switching between the tabs on the news panel in the sidebar. When I click on one of the news panel tabs it causes the main homepage feature to move...

Ugly Git merge problem

I was doing some work at home over the weekend and used git to merge code changes back to my office computer (connected via a vpn) and found some very ugly merge problems. First of all the merge should have been very clean as everything was committed at the office on Friday and I only made changes to my home computer on Saturday and Sun...

jquery menu hover not working due to live form validation

Okay, i posted a question before to fix my live validation contact form. Now the form athentication is working perfectly but my jquery hover menu effects are going, on other pages menu is working but not on the contact form page.. here is the link to check it online link text is there any conflict between these two functions..... ...

jQuery fadeOut/fadeIn interfereing with jCarousel

I am using fadeOut/fadeIn to fade out a particular DIV and fade in another which contains jCarousel. Once the DIV has faded in, only the first jCarousel Item displays (there are 7 in total), but all other jCarousel elements display correctly. When running jCarousel alone in a separate file, it executes perfectly. Below is the code I am...

why does this javascript code jump into jQuery code? appendChild conflict?

I will be using some jQuery below this chunk of code (which I may rewrite as jQuery). jQuery is loaded. But I don't understand why, when I step through this code in the debugger, the debugger jumps into jQuery on the line indicated, and I am get the error that "UL.appendChild" is not a function. var Dialog = document.createElement('div...

Using two jquery plugins in one page doesn't seem to work...

I am using a jquery cycle plugin and flexdropdown in one page... What happens is either one of the plugin is working but not both.... <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; <script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/...

What's the simplest way to edit conflicted files in one go when using git and an editor like Vim or textmate?

Hi guys, I'm trying to tweak a little When I type in git status on the commandline, I get a list of files that need to be resolved like so: # Unmerged paths: # # (use "git reset HEAD <file>..." to unstage) # (use "git add <file>..." to mark resolution) # # both modified: apache2/templates/default/apache2.conf.erb # both ...