Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

45
votes
6answers
10k views

Is there a git-merge --dry-run option?

I'm merging in a remote branch that may have a lot of conflicts. How can I tell if it will have conflicts or not? I don't see anything like a --dry-run on git-merge.
25
votes
3answers
9k views

How to resolve a conflict with git-svn?

What is the best way to resolve a conflict when doing a "git svn rebase", and the git branch you are on becomes "(no-branch)"?
24
votes
1answer
6k views

How can I discard remote changes and mark a file as “resolved”?

I have some local files, I pull from remote branch and there are conflicts. I know that I would like to keep my local changes and ignore the remote changes causing conflicts. Is there a command I can ...
19
votes
2answers
32k views

Weird Chrome prototype/jQuery conflict

We have an application with legacy code that relies on prototype, but we've found it to be too 'heavy' for most of the places we want to use it and and have found jQuery to be a better fit for how we ...
19
votes
3answers
33k views

jQuery & Prototype Conflict

I am using the jQuery AutoComplete plugin in an html page where I also have an accordion menu which uses prototype. They both work perfectly separately but when I tried to implement both components ...
17
votes
3answers
10k views

How to resolve merging conflicts in Mercurial (v1.0.2)?

I have a merging conflict, using Mercurial 1.0.2: merging test.h warning: conflicts during merge. merging test.h failed! 6 files updated, 0 files merged, 0 files removed, 1 files unresolved There are ...
12
votes
4answers
305 views

Problems with noobs putting my GA code into their sites

I don't mean for the title to be derogatory, but this is a rather frustrating problem, and I'm looking for a good workaround, given a language barrier involved. I have a site set up for a plugin I ...
12
votes
2answers
9k views

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?
12
votes
3answers
12k views

How do I resolve a conflict after git pull?

I have to solve some conflict after a "git pull". $ git pull CONFLICT (rename/add): Renamed vignette_generator_mashed.h->vision_problem_8.h in 49423dd0d47abe6d839a783b5517bdfd200a202f. ...
12
votes
2answers
4k views

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 ...
12
votes
9answers
2k views

C function conflict

What should I do if I have two libraries that provide functions with equivalent names?
11
votes
2answers
226 views

Extension methods conflict

Lets say I have 2 extension methods to string, in 2 different namespaces: namespace test1 { public static class MyExtensions { public static int TestMethod(this String str) ...
11
votes
4answers
8k views

How to merge conflicts (file project.pbxproj) in Xcode use svn?

There are 2 members in our team. We use Xcode's SCM (use SVN) to manger our source code files. We all add files to our Xcode project. He has commited to svn server. When I update, Xcode find there has ...
10
votes
3answers
1k views

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 ...
9
votes
1answer
2k views

Git - how to force merge conflict and manual merge on selected file

We maintain web application which has common master branch and many parallel branches, one for each installation, each have few specific changes. Source code is managed in git and it is terrific tool ...
9
votes
2answers
5k views

Gesture recognizer and button actions

I have a view hierarchy that looks something like this: UIView (A) UIView > UIImageView UIView > UIView (B) UIView > UIView (B) > Rounded Rect Button UIView > UIView (B) > ...
9
votes
4answers
767 views

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 ...
9
votes
2answers
4k views

How to avoid conflict between JQuery and Prototype

If a page has both JQuery and Prototype then I got conflict. There is a option to disable $ sign for JQuery so there is no conflict but, I have to use keyword JQuery instead of $. I wonder if there ...
9
votes
1answer
3k views

git automatic conflict resolution

Is there any way to specify to git to automatically resolve the conflicts for a pack of files by taking the remote version for each of them? For instance, to take the remote version of each files in a ...
8
votes
3answers
690 views

git stash and edited hunks

I totally love git add -p and git stash but I occasionally have the following problem, which is reproduced by the following sequence of commands: git add -p my_file: then I edit a hunk manually ...
8
votes
2answers
532 views

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 ...
8
votes
1answer
7k views

Use both jquery.js and scriptaculous.js files?

Is there any way to use both the jquery and scriptaculous js files together? I was trying to implement the autocomplete feature of the cakephp framework which required the js ...
7
votes
1answer
157 views

How can I do a merge in Bazaar (bzr merge) that ignores whitespace?

As our team and codebase continue to get bigger, we're seeing more and more cases where Bazaar insists there's a conflict during a merge operation, but in reality it's just a minor whitespace change - ...
7
votes
2answers
391 views

how to manage debug and release version on android device?

I'm new to Android dev and I'm almost ready to release a first version of my app :) While testing the signed release apk on my phone, it refuse to install because the debug version is installed with ...
7
votes
6answers
1k views

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 ...
6
votes
1answer
492 views

git merge: filter files to avoid silly conflicts (like whitespace or case changes)

I'm currently inside a very complicated merge in git, and I have many conflicts. The conflict is about two Ada source files. I would like to make a merge that would ignore both whitespace changes and ...
6
votes
4answers
405 views

Why is a 3-way merge advantageous over a 2-way merge?

Wikipedia says a 3-way merge is less error-prone than a 2-way merge, and often times doesn't need user intervention. Why is this the case? An example where a 3-way merge succeeds and a 2-way merge ...
6
votes
1answer
566 views

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 ...
6
votes
5answers
6k views

JQuery conflict with an other JQuery library

I use jquery for a module. My joomla template have an integrated jquery menu. So they conflict with each other. Is there a way to solve this problem. Following the script code of the module ...
6
votes
4answers
3k views

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 ...
5
votes
3answers
329 views

Git says a file is unmerged and I can't commit, but the file seems to be merged

I had about 12 file conflicts when I merged branches. I manually fixed all the conflicts and staged the files. But now when I try to commit, it says one of the files is unmerged. U ...
5
votes
3answers
153 views

How to merge code and resolve conflicts more easily using git?

There is a great option --patch which can be used with git add. Using this option I can easily review all my changes and decide which chunks should be added to staging area. This interactive process ...
5
votes
1answer
273 views

Why does running multiple Wicket applications cause AJAX conflicts?

When I open two Wicket web applications in the same browser, it seems there are AJAX conflicts as I see a full page refresh in place of a partial refresh. This is true even if the applications are on ...
5
votes
1answer
262 views

How does the LINQ RefreshMode work?

In case of conflict, I need to overwrite the values in the database with my changes . I found the following article on MSDN that explains how to resolve conflicts using the RefreshMode: ...
5
votes
1answer
458 views

Does git's -X “theirs” not handle new/deleted file conflicts?

Following on the scenario from this question, I'm performing a git rebase -s recursive -X theirs etc... and am surprised to be stopped with the following types of conflicts: added by them deleted by ...
5
votes
5answers
271 views

Why can't a class member's name be the same as one of its nested classes?

Or why is the following impossible: class Material { class Keys { ... } Material.Keys Keys { get; set; } // Illegal } I don't see any possible ambiguity. When accessed by ...
5
votes
6answers
306 views

Best Practices for CSS Specificity?

I am creating a contact form that will be included on several different sites. The styles of the contact form and the styles of the site will both be included and I can't very well predict the ...
5
votes
2answers
126 views

git: store different stages of a file in the index/working tree after conflict

Assume one file is in conflict state with git. It means that the index contains 3 versions of the file, the previous one, the one from one branch, the one from the other branch. I would like to ...
5
votes
3answers
352 views

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 ...
5
votes
3answers
1k views

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 ...
5
votes
4answers
4k views

jQuery and MooTools Conflict

Okay, so I got jQuery to get along with MooTools with one script, by adding this at the top of the jQuery script: var $j = jQuery.noConflict(); and then replacing every: $( with $j( But how ...
5
votes
4answers
720 views

JIRA - Resource Availability and Utilization Tracking - Across multiple projects

Was wondering if anyone knows of a plugin for JIRA that would provide a consistent view on a daily / weekly / Monthly / etc. basis for People / Resource Tracking and forecasting of resource ...
5
votes
6answers
1k views

Can I run two web servers on the same computer?

I just found out that I can write a really simple web server using Python. I have already an Apache web server I would like to try the Python based web server on this machine. But I am afraid that I ...
5
votes
1answer
648 views

How to use two different Microsoft Interop assemblies in one project?

I want to use two different Microsoft.Office.Interop assemblies (version 11 and 12) depending on the Office version installed on customer's machine. I've been able to add these two asseblies to my ...
5
votes
6answers
11k views

SVN Merge conflict during commit

Eclipse + Subversive plugin On commiting a directory which is out of sync with the SVN a message pops up: Merge conflict during commit svn: Commit failed (details follow): svn: File or directory '.' ...
5
votes
6answers
3k views

Shift reduce conflict

I'm having a problem understanding the shift/reduce confict for a grammar that I know has no ambiguity. The case is one of the if else type but it's not the 'dangling else' problem since I have ...
5
votes
7answers
929 views

What JavaScript frameworks conflict with each other?

There are times when I want to use mootools for certain things and Prototype & script.aculo.us for others but within the same site. I've even considered adding others, but was concerned about ...
4
votes
1answer
335 views

git submodule merge conflict: how to visualize?

I was pretty happy when I found out lately about git submodule summary which shows me nicely by which commits the checked out commit of a submodule is ahead or behind the reference in the ...
4
votes
4answers
415 views

Python module name conflict

I have come across two Python modules that have to be imported using the same module name, e.g. import foo I know that the one I want provides certain functions (e.g. foo.bar()), so is there a way ...
4
votes
1answer
81 views

In Git, is there a way to automatically mark all newer vesions of files in a merge conflict as correct?

So I've come across a merge conflict with my repo, the older versions are all ~1 month old, is there any simple command to mark all the newer versions as correct rather than having to do it for every ...

1 2 3 4 5 10