active questions tagged merge - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T21:24:38Z http://stackoverflow.com/feeds/tag/merge http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1807036/git-merging-public-and-private-branches-while-while-keeping-certain-files-intact 4 Git: merging public and private branches while while keeping certain files intact in both branches Evgeny 2009-11-27T06:07:21Z 2009-12-01T19:14:53Z <p>Hi, </p> <p>I've read a few git questions here, but could not find an answer to this one:</p> <p>I have a public and a private branches where I want to allow certain files to diverge.</p> <p>Those are configuration files with passwords and my local customizations. </p> <p>I do want to be able to merge the branches both ways: from private to public and back, but I do not want to ever have those specific files merged automatically.</p> <p>Is there a way to set up git this way? I'd love to find an automated solution :) - so that merging could be done as usual.</p> <p><hr></p> <p><strong>EDIT:</strong> here's the solution that worked for me (Thanks to VonC for the advice on gitattribute)</p> <p>the only unexpected thing for me was that "merge protection" starts working only after files have diverged in the two branches, not immediately after the following configuration was applied</p> <p>.gitattributes (track with git if you want to share this) or .git/info/attributes:</p> <pre><code>file1 merge=keepmine path/file2 merge=keepmine </code></pre> <p>keepmine is the named custom merge manager that is just a do-nothing command called instead of the internal merge driver on selected files, which is set up below</p> <p>When merging from private to public branch I usually do <code>git merge --squash private</code>. That way private edits won't get into the git history on the public branch.</p> <p>.git/config:</p> <pre><code>#public repository [remote "origin"] fetch = +refs/heads/*:refs/remotes/origin/* url = &lt;public repo git url&gt; #private repository #has to set up with git init and populated with the initial commit to branch mybranch [remote "private"] push = +: url = /path/to/local/private/repo [merge "keepmine"] name = dont_merge_selected_files driver = echo %O %A %B [branch "master"] remote = origin merge = refs/heads/master #private branch settings [branch "mybranch"] remote = private merge = refs/heads/mybranch </code></pre> <p>if there's a way to improve this please comment</p> http://stackoverflow.com/questions/1825349/merge-virtually-two-mysql-tables 0 Merge virtually two mysql tables jim red 2009-12-01T10:38:00Z 2009-12-01T12:42:21Z <p>Hi</p> <p>ist there a way to merge two tables in MySQL virtually so I could query and insert data? (which is basicly splitted)</p> <p>exp.</p> <p>table</p> <ul> <li>id</li> <li>active</li> <li>foo</li> </ul> <p>table_meta</p> <ul> <li>table_id</li> <li>language</li> <li>text</li> </ul> <p>what I like to do is using something like this instead of sql-join</p> <pre><code>INSERT INTO table_join SET active = 1, language = 'en'; </code></pre> <p>regards jim</p> http://stackoverflow.com/questions/1823397/heroku-using-git-branch-is-confusing 1 heroku using git branch is confusing! Stacia 2009-12-01T00:59:02Z 2009-12-01T08:13:49Z <p>Ok, so I have a big github project that i'm not supposed to merge my little Stacia branch into. However, it seems like Heroku only takes pushing MASTER seriously. It looks like I pushed my branch, but for example if I only have my branch, it even acts like there's no code on the server. I can't even get my gems installed since the .gems file is on my branch.</p> <p>Basically I don't even want Heroku to know there's a master. I just want to use my test Stacia branch. But it keeps ignoring my local branch. Is there a way to do this? And again, I don't want to overwrite anything on the main Github repository (eeek!) but it would be ok probably if I had both master and my branch on heroku and merged them there.</p> <p>I am a total git novice (on windows no less) so please bear with me.</p> http://stackoverflow.com/questions/1824264/what-is-a-trivial-merge-in-git 1 What is a trivial merge in git? apphacker 2009-12-01T06:00:54Z 2009-12-01T07:17:00Z <p>Sometimes when I do a pull instead of a rebase after a simple one file change commit I see the following in the master log:</p> <blockquote> <p>Trivial merge</p> </blockquote> <p>But there's no diff of what changed? What's the point of this log message? Did anything change I don't know of? It scares me.</p> http://stackoverflow.com/questions/1823480/merge-background-audio-file 0 merge background audio file Richard 2009-12-01T01:23:37Z 2009-12-01T06:50:08Z <p>I have 2 audio files for primary and background music that I want to merge (not concatenate). The final audio file should be as long as the primary file, and if the background music is shorter then it should repeat.</p> <p>If there a Linux command or a Python library that can be used to do this? <a href="http://sox.sourceforge.net/Main/HomePage" rel="nofollow">Sox</a> supports merging, but does not appear to allow repeating the background audio.</p> http://stackoverflow.com/questions/1677049/how-do-i-get-my-git-merge-conflicts-back-after-merging-incorrectly 0 How do I get my git merge conflicts back after merging incorrectly? bdimcheff 2009-11-04T22:14:21Z 2009-11-30T23:55:38Z <p>I'm trying to merge 2 branches that have a lot of changes in them, several with merge conflicts. I merged the files using <code>git mergetool</code>, but I've subsequently realized that I merged a couple of them incorrectly. I basically want to go back to the conflicted state for those couple files, so I can re-run the mergetool and correct my errors. I don't want to throw away my entire merge, since most of it is correct.</p> <p>I've tried resetting to my head and then doing <code>git checkout -m other_branch -- my_file</code> to no avail. I ended up resetting to HEAD, getting the file out of the other branch, and just doing <code>git add --patch</code> on the file, only staging what I wanted. But there must be a better way...</p> http://stackoverflow.com/questions/1764002/svn-reintegrate-a-branch-with-externals-fails 0 svn reintegrate a branch with externals fails dnndeveloper 2009-11-19T15:15:45Z 2009-11-30T22:59:59Z <p>using svn 1.6.6 with tortoisesvn 1.6.6</p> <p>what I am doing:</p> <p>1) Apply external properties to a folder in the trunk (both single file and folder external, externals are binary files)</p> <p>2) Create a branch from the trunk and update the entire project</p> <p>3) Modify a file on the branch and commit the changes, then update the entire project.</p> <p>4) Merge -> "Reintegrate a branch" when I get to the last screen I click "test merge" and get this error: Error: Cannot reintegrate into mixed-revision working copy; try updating first </p> <p>I update the entire project and still the same error.</p> <p>other observations: If I "Merge a range of revisions" everything works fine. If I remove the externals everything works fine using either "Merge a range of revisions" or "Reintegrate a branch"</p> <p>Anyone else having this issue?</p> http://stackoverflow.com/questions/1822780/preparing-a-database-in-access-need-help 2 Preparing a database in access? need help! Mindy 2009-11-30T22:15:16Z 2009-11-30T22:25:15Z <p>I am working in a small law firm and my boss has asked me to put a database together to help with outgoing mail. There are 5 different tables that exist in Access. (Applicants, Attorneys, Lien Claimants, Employers and Workers Compensation Boards) All of the tables include addresses only. Each Applicant has an attorney, one or possibly more lien claimants, employer and designated board. I need to create some type of database that will allow me to create a mail merge for all applicants. Keep in mind each applicant has different addresses, employers, etc..(There are roughly 500 applicants) I need to create the database so when I change/update an address on the table in Access it will change ALL of the applicant(s) it pertains to. Tryin to only update a new address in one place instead of 50. If anyone can help please let me know. I am looking for the most efficient and effective way of doing this.</p> http://stackoverflow.com/questions/1817370/ediff-as-mergetool 3 ediff as mergetool ~mathepic 2009-11-30T00:53:49Z 2009-11-30T21:15:13Z <p>I would like to be able to use ediff with "git mergetool".</p> <p>I found some patches that alter the source code, which I don't want to do. Instead, I'd like to add ediff support with my .gitconfig.</p> <p>I know git has builtin support for emerge, but I prefer ediff.</p> <p>I attempted to add these lines to my .gitconfig:</p> <pre><code>[mergetool "ediff"] cmd = emacs --eval "(ediff-merge-files-with-ancestor \"$LOCAL\" \"$REMOTE\" \"$BASE\" nil \"$MERGED\")" </code></pre> <p>But when I try to run this with "git mergetool --tool=ediff", I get this:</p> <pre><code>eval: 1: Syntax error: "(" unexpected </code></pre> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1818153/problems-with-mail-merge-macro-run-from-excel 0 Problems with Mail Merge macro run from Excel Tash 2009-11-30T06:28:29Z 2009-11-30T06:28:29Z <p>I have created a macro to automate a Word mail merge from excel. Below is my code. The macro is stopping at the highlighted section</p> <p>Sub RunMerge()</p> <p>Dim wd As Object</p> <p>Dim wdocSource As Object</p> <p>Dim strWorkbookName As String</p> <p>On Error Resume Next</p> <p>Set wd = GetObject(, "Word.Application")</p> <p>If wd Is Nothing Then</p> <pre><code>Set wd = CreateObject("Word.Application") </code></pre> <p>End If</p> <p>On Error GoTo 0</p> <p>Set wdocSource = wd.Documents.Open("O:\IPSSQL\Master Docs - Aust\Gen_docs\Dividend Priority 549 MERGE DivPrepXLS.doc")</p> <p>strWorkbookName = ThisWorkbook.FullName</p> <p>wdocSource.MailMerge.MainDocumentType = wdNotAMergeDocument</p> <p>wdocSource.MailMerge.MainDocumentType = wdFormLetters</p> <p><strong>...problem part of code starts here...</strong></p> <p>wdocSource.MailMerge.OpenDataSource _</p> <pre><code>Name:=strWorkbookName, _ ConfirmConversions:=False, _ ReadOnly:=False, _ LinkToSource:=True, _ AddToRecentFiles:=False, _ PasswordDocument:="", _ PasswordTemplate:="", _ WritePasswordDocument:="", _ WritePasswordTemplate:="", _ Revert:=False, _ Format:=wdOpenFormatAuto, _ Connection:="Data Source=" &amp; strWorkbookName &amp; ";Mode=Read", _ SQLStatement:="SELECT * FROM '549Merge$'", SQLStatement1:="", SubType _ :=wdMergeSubTypeAccess </code></pre> <p>With wdocSource.MailMerge</p> <pre><code>.Destination = wdSendToNewDocument .SuppressBlankLines = True With .DataSource .FirstRecord = wdDefaultFirstRecord .LastRecord = wdDefaultLastRecord End With .Execute Pause:=False </code></pre> <p>End With</p> <p>wd.Visible = True</p> <p>wdocSource.Close</p> <p>SaveChanges = False</p> <p>Set wdocSource = Nothing</p> <p>Set wd = Nothing</p> <p>End Sub</p> http://stackoverflow.com/questions/1816939/java-aware-merge-command 9 Java aware merge command Marcus 2009-11-29T22:02:44Z 2009-11-30T00:54:24Z <p>Every time I see a conflict on something like imports or method signature changes (e.g. renames of variables) in my SCM I wonder if there is something like a language aware diff/merge method that can handle the more annoying small changes that can happen on a shared project. Is there anything out there that handles conflicts more smoothly, working in a Unix environment?</p> http://stackoverflow.com/questions/1810997/which-merge-strategies-does-mercurial-use 2 Which merge strategies does mercurial use? J G 2009-11-27T23:31:50Z 2009-11-28T15:00:21Z <p>I work in an environment with large scale multi-parallel branching. Looking at GIT I see it has several merge strategies:</p> <pre><code>already up-to-date fast-forward octopus resolve recursive </code></pre> <p>Does Mercurial have the equivalent of each of these? (ie is the implementation of Mercurial's merge algorithm as good as recursive?</p> http://stackoverflow.com/questions/1810251/merging-multiple-git-branches-into-master 1 Merging multiple git branches into master? Shpigford 2009-11-27T19:02:26Z 2009-11-27T19:17:30Z <p>So I have 3 git branches:</p> <ul> <li>master</li> <li>refresh</li> <li>auth_upgrade</li> </ul> <p>I haven't <em>really</em> been using branches like I should...so <code>master</code> is way out of date, <code>refresh</code> is somewhat out of date and <code>auth_upgrade</code> is actually the branch that is completely current.</p> <p>So...I ultimately want to make <code>auth_upgrade</code> the master branch and then <code>git push</code> it to my github repo.</p> <p>What's the best process for doing that?</p> http://stackoverflow.com/questions/1809484/git-how-to-reverse-merge-a-commit 2 Git: how to reverse-merge a commit? mklhmnn 2009-11-27T15:54:07Z 2009-11-27T16:09:36Z <p>With SVN it is easy to reverse-merge a commit, but how to do that with Git?</p> http://stackoverflow.com/questions/1798596/how-can-i-merge-my-files-when-the-folder-structure-has-changed 1 How can I merge my files when the folder structure has changed tomdee 2009-11-25T17:30:22Z 2009-11-26T00:08:09Z <p>I want to perform a major codebase reorganization, but I'm unable to proceed unless I can provide a way for trunk fixes to be easily applied to branches that were taken before the reorganization.</p> <p>One approach I was considering was to apply the reorganization to to all of the support branches, but this is potentially destabilising.</p> <p>A preferred approach would be to provide a merge tool that can take into account the updated file locations. Any suggestions on how I could implement this?</p> http://stackoverflow.com/questions/1800087/git-merge-recursive-not-doing-what-i-want 1 Git merge recursive not doing what I want. unknown (google) 2009-11-25T21:29:06Z 2009-11-25T21:37:19Z <p>Is there a way to have Git force a manual resolution for a file when the file was edited in both branches?</p> <p>My problem is that I want some of the changes from one branch and some of the changes from the other. It turns out these changes don't always step on each other but the algorithm is not always picking the correct change.</p> <p>One thing I notice, is the base file in the 3-way merge isn't what I was expecting. Is it possible to have Git use a chosen file from one branch as the base?</p> http://stackoverflow.com/questions/1799544/mysql-merge-tables-with-different-structure 0 MySQL merge tables with different structure Anthony 2009-11-25T19:55:00Z 2009-11-25T20:16:26Z <p>I have two databases with different structure.</p> <p>Table 1:</p> <pre><code>ch_code ch_def ch_weight </code></pre> <p>Table 2:</p> <pre><code>address ch_code </code></pre> <p>I need to merge this two tables, so the structure would look like:</p> <pre><code>ch_code ch_def ch_weight address </code></pre> <p>The number or rows in two tables are different (table 1 has more data).</p> <p>Should I use <code>merge</code>, <code>union</code>.. something else?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1798033/tf14087-cannot-undelete-file-because-not-all-of-the-deletion-is-being-undeleted 0 tf14087 Cannot undelete [file] because not all of the deletion is being undeleted Kaius 2009-11-25T16:12:49Z 2009-11-25T16:12:49Z <p>We are getting this error when we try to merge from a development branch (Dev) back to its parent branch (Main). Main did have some changesets rolled back a few weeks ago which included the deletion of some folders which exist in Dev. We believe this is the source of the problem. What is the best way to resolve this. </p> <p>Main should pretty much match up with Dev but currently it is missing some sub folders. How can I get these folders / files to move from Dev to Main? We are trying to manually resolve the changes but it is a bit of a mess. It hard to believe that TFS makes things this hard to resolve.</p> http://stackoverflow.com/questions/1788646/matlab-simulink-version-control-with-multiple-developers 2 Matlab Simulink version control with multiple developers Jon Mills 2009-11-24T08:26:29Z 2009-11-25T12:24:56Z <p>We're using Matlab Simulink for model development (and Real-Time Workshop autocoding) within a team of several developers.</p> <p>We currently use Visual Source Safe (yes, I know its terrible) for version control, using locks to prevent conflicting changes.</p> <p>We'd like to migrate our programme to a different version control system (svn, hg or git), but we're concerned about performing merges and diffs on Simulink .mdl files.</p> <p>Does anybody have useful experience in performing merges on Simulink files?</p> http://stackoverflow.com/questions/1790280/linq-merging-results-in-rows 2 LINQ Merging results in rows melco-man 2009-11-24T14:04:39Z 2009-11-25T08:49:11Z <p>Hi. I have a LINQ query which returns a set of rows. The structure is:</p> <pre><code>NAME, col1, col2, col3, col4 name1 1 null null null name1 null 1 null null name1 null null 1 1 </code></pre> <p>As a result I want to have one row containing</p> <pre><code>name1 1 1 1 1 </code></pre> <p>So I want to group those results by name and merge (sum?) the other columns so if I have not null in one of the rows in a column - I will receive anything except null.</p> <p>Thanks for help!</p> http://stackoverflow.com/questions/1710396/problem-in-svn-merging-branches-into-trunk 1 Problem in SVN merging branches into trunk Cesar 2009-11-10T19:05:30Z 2009-11-25T00:20:45Z <p>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.</p> <p>What I want is A + B + C into trunk after merges.</p> <p>Edited for more explanation:</p> <ol> <li>In trunk I have 3 files: "FILE 1", "FILE 2" and "FILE 3";</li> <li>I create a branch from trunk as "Branch 1";</li> <li>I switch to "Branch 1", I fix bugs into "FILE 1" file and commit;</li> <li>In the same time, another person create a branch from trunk as "Branch 2";</li> <li>This person fix another bugs into "FILE 2" and "FILE 3" files and commit;</li> <li>The "Branch 2" is approved for publish, then I merge "Branch 2" to "trunk" (its ok);</li> <li>In next day the "Branch 1" is approved, then I merge "Branch 1" to "trunk", and the "trunk" lose the changes from "Branch 2".</li> </ol> http://stackoverflow.com/questions/1784174/development-branch-and-trunk-are-inconsistent-and-i-cannot-get-them-in-sync 0 Development branch and trunk are inconsistent and I cannot get them in sync Aron Rotteveel 2009-11-23T16:12:20Z 2009-11-24T08:12:29Z <p>I am somewhat lost in merges. I develop in a single branch and merge it into the trunk when a piece of code is done. Somehow, there are still differences between the trunk and branch, which means every time I switch from the branch to the trunk or the otherway around, several files are updated, added and deleted.</p> <p>As said, I am somewhat lost and think there must be a pretty easy solution to this; I just don't see it.</p> <p>Any help or pointers are appreciated. If there's more information you need, please ask.</p> <p><strong>UPDATE:</strong></p> <p>I have now manually edited all files to be identical and have commit them several times. All files are now technically the same, but for some reason, when switching from branch to trunk or the other way around, they still appear as updated files.</p> <p><strong>UPDATE 2:</strong></p> <p>When switching still 4 files and 1 directory appear as updated, even though they are EXACTLY the same across the branch/trunk. Is there any way to fix this and why could it be happening?</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1783876/how-to-git-merge-a-branch-that-only-contains-a-subfolder-of-trunk 0 How to Git merge a branch that only contains a subfolder of trunk? Jesper Rønn-Jensen 2009-11-23T15:31:36Z 2009-11-24T00:02:27Z <p>I am currently working on a project using svn (server is version 1.4 which means no modern merge tools available). </p> <p>I want to merge a branch with quite a few weeks of work in it. The problem is that back when the branch was created, it was made as a copy only of a subfolder.</p> <p>Svn structure of project:</p> <pre><code>/trunk/folder1 /file1 /file2 folder2 folder3 ... </code></pre> <p>Now I'm struggling to merge a branch back into trunk.</p> <p>Now the problem is that the guy that created the branch only copied /trunk/folder1 and not the entire trunk. This creates a problem for git-svn, as it thinks that I created a bunch of files in the folder.</p> <pre><code> git co master git merge branch1 ... create mode 100644 trunk/file1 create mode 100644 trunk/file2 </code></pre> <p>(assuming that the files were originally in <code>/trunk/folder1/file1</code>)</p> <p>The original reason i'm not using svn for this, is because of too many conflickts. (<code>svn merge</code> requires server 1.5+ and we're only on 1.4, <code>svnmerge.py</code> can only merge small chunks at a time and requires a LOT of mental overload ... i have used a half day to get only half way through)</p> <p>Using <code>git merge</code> seems promising, but at first I need to tell git to use a subfolder of my master branch as merge target. How is that done?</p> http://stackoverflow.com/questions/1775866/how-do-i-merge-two-masks-together-in-matlab 3 How do I merge two masks together in MATLAB? hinrge 2009-11-21T15:58:45Z 2009-11-21T17:50:18Z <p>I have two masks that I would like to merge together, overwriting <code>mask1</code> with <code>mask2</code> unless <code>mask2</code> has a zero. The masks are not binary, they are some value that is user defined in the region of interest and 0 elsewhere.</p> <p>For example if:</p> <pre><code>mask1=[0 5 5;0 5 5]; mask2=[4 4 0;4 4 0]; </code></pre> <p>then I would want an output of <code>[4 4 5;4 4 5]</code>. And if I then had another mask,</p> <pre><code>mask3=[0 6 0;0 6 0]; </code></pre> <p>then I would want an output of <code>[4 6 5;4 6 5]</code></p> <p>There has got to be an easy way of doing this without going through and comparing each element in the matrices. Timing is important since the matrices are quite large and I need to merge a lot of them. Any help would be great.</p> http://stackoverflow.com/questions/1774969/programmatically-make-use-of-eclipses-merge-and-diff-viewers 2 Programmatically make use of eclipse's merge and diff viewers. Craig 2009-11-21T08:51:30Z 2009-11-21T10:45:19Z <p>When a text conflict occurs in Bazaar (and many other dvcs) a .BASE, .THIS and .OTHER file is produced. Its then up to the user to make use of an 3 way merge tool to merge the conflict and then mark it as resolved.</p> <p>I would like to get hold of all the registered merge viewers in eclipse and give the user an option to merge the conflict with any one of these. (with the TextMergeViewer being an default option). I suspect that I would need to some how programmatically provide the 3 files to these mergeviewers and maybe write some custom code to wrap the BASE, THIS and OTHER files to tell the merge viewer where the differences are. (interpret the "herringbone" markers like <code>&lt;&lt;&lt;&lt;&lt;&lt;&lt;</code>. etc) </p> http://stackoverflow.com/questions/1773300/diff-tool-that-ignores-newlines 1 Diff Tool That Ignores Newlines Prometheus 2009-11-20T21:19:15Z 2009-11-20T21:58:03Z <p>I frequently need to compare SQL procedures to determine what has changed in the newest version. The problem is, everyone has their own style of formatting, and SQL doesn't (usually) care about where one puts their newlines (e.g. where clauses all on one line vs. newline before each AND).</p> <p>This makes it very difficult (especially for long procedures) to see the actual differences. I cannot seem to find a free diff/merge utility that will allow me to ignore newlines (i.e. treat as whitespace). So far I've tried WinMerge and Beyond Compare without any luck. Does anyone know of a diff tool (ideally free) that would see these two examples as identical?</p> <p>Ex. 1:</p> <pre><code>the quick brown </code></pre> <p>Ex. 2:</p> <pre><code>the quick brown </code></pre> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1759369/how-to-merge-duplicates-in-2d-python-arrays 0 How to merge duplicates in 2D python arrays Wei Lou 2009-11-18T21:55:07Z 2009-11-20T17:13:36Z <p>Hi, I have a set of data similar to this:</p> <pre><code>No Start Time End Time CallType Info 1 13:14:37.236 13:14:53.700 Ping1 RTT(Avr):160ms 2 13:14:58.955 13:15:29.984 Ping2 RTT(Avr):40ms 3 13:19:12.754 13:19:14.757 Ping3_1 RTT(Avr):620ms 3 13:19:12.754 Ping3_2 RTT(Avr):210ms 4 13:14:58.955 13:15:29.984 Ping4 RTT(Avr):360ms 5 13:19:12.754 13:19:14.757 Ping1 RTT(Avr):40ms 6 13:19:59.862 13:20:01.522 Ping2 RTT(Avr):163ms ... </code></pre> <p>when i parse through it, i need merge the results of Ping3_1 and Ping3_2. Then take average of those two row export as one row. So the end of result would be like this:</p> <pre><code>No Start Time End Time CallType Info 1 13:14:37.236 13:14:53.700 Ping1 RTT(Avr):160ms 2 13:14:58.955 13:15:29.984 Ping2 RTT(Avr):40ms 3 13:19:12.754 13:19:14.757 Ping3 RTT(Avr):415ms 4 13:14:58.955 13:15:29.984 Ping4 RTT(Avr):360ms 5 13:19:12.754 13:19:14.757 Ping1 RTT(Avr):40ms 6 13:19:59.862 13:20:01.522 Ping2 RTT(Avr):163ms </code></pre> <p>currently i am concatenating column 0 and 1 to make a unique key, find duplication there then doing rest of special treatment for those parallel Pings. It is not elegant at all. Just wonder what is the better way to do it. Thanks!</p> http://stackoverflow.com/questions/1769297/3-way-merge-in-javascript-or-php 0 3-way merge in JavaScript or PHP Andreas Gohr 2009-11-20T09:23:02Z 2009-11-20T14:35:22Z <p>Does anyone know of an Open Source three-way merge implementation in JavaScript or PHP? I want to merge plain text files without the need to rely on any server side binaries.</p> <p>I found a few solutions for creating diffs, but no merge implementations.</p> http://stackoverflow.com/questions/1761517/free-merge-tools 1 Free merge tools Yurish 2009-11-19T07:31:27Z 2009-11-19T10:06:44Z <p>I think, this can be programming question. I need free merge tool, in order to compare differences in 2 directories. I used Beyond Compare and Araxis Merge, but this tools are not free. Maybe you can recommend some other? I tried WinMerge, but it is not comfortable to use.</p> http://stackoverflow.com/questions/1739364/git-move-a-file-directory-but-still-merge-changes-easily 0 git: Move a file/directory but still merge changes easily? cmb 2009-11-15T23:57:39Z 2009-11-18T17:26:13Z <p>I've read in various FAQs that git doesn't explicitly track renames/moves, preferring to look for identical (or in some situations similar?) files. That's great, but will it cope with this situation: a friend's remote repository has a new feature (i18n) involving some new files at <code>debian/po/*.po</code>. I have my own fork of this project, and want to merge this feature but put the files at just <code>po/*.po</code> (I can do that as two commits, or whatever is necessary). I expect the remote repo will continue to receive updates to the feature, and I want to just merge/cherry-pick those commits and have them applied to the files in my new location. Can git do that, perhaps with some sort of mapping of "these files have moved over here now"? Or is it more pain than it's worth and should I just accept the slightly odd <code>debian</code> path in my repo?</p>