Merging is a generic term for combining two or more related sets of data. It is commonly associated with revision control systems when reconciling multiple changes made to a revision-controlled collection of files. Merging multiple data sets is another use of this tag.

learn more… | top users | synonyms (1)

0
votes
1answer
4 views

PHP merge arrays in specific order, not simply append them

I have two arrays: Array ( [0] => a [1] => b [2] => c [3] => d ) Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 ) I want to merge them so they end up like this: Array ( [0] ...
-1
votes
0answers
14 views

How to pack multiple files into one file and unpack in php?

i am looking for a fast way to merge multiple files(of any format) into a single file and then read/write to the files without having to unpack all of them. much like a folder, only it would be a ...
0
votes
0answers
21 views

Merge query using two tables in SQL server 2012

I am very new to SQL and SQL server, would appreciate any help with the following problem. I am trying to update a share price table with new prices. The table has three columns: share code, date, ...
0
votes
0answers
11 views

Is there any way to merge in a visual merge tool on windows that simultaneously shows annotations?

I am using Mercurial, but I imagine that any merge tool that is aware of the version control system below it could do several things that a merge tool which is not aware of the version control system ...
2
votes
0answers
29 views

How do I merge git repositories with related branches

For historical reasons I currently have the following project structure: part0: master branch0 branch1 part1: master branch0 branch1 The binaries of the project are built by checking out ...
0
votes
3answers
17 views

how to merge this array php

This is my first array var_dump array(1) { [0]=> array(55) { ["Primary Maths"]=> NULL ["Primary Environment"]=> NULL ["Primary English"]=> NULL ["Primary ...
0
votes
2answers
14 views

Merge and replace table id with name

table employee: +----+------------+ | id | firstname | +----+------------+ | 1 | name1 | +----+------------+ table orders: +----+--------+ | id | eid | +----+--------+ | 1 | 2 | ...
1
vote
1answer
28 views

Merge and replace table id with name of two table SQL

table customers: +----+------------+ | id | text | +----+------------+ | 33 | name1 | | 34 | name2 | | 35 | name3 | | 36 | name4 | +----+------------+ table orders: ...
0
votes
0answers
33 views

R merge() follow up conditional replacement of non-unique entries

I would greatly appreciate a solution to defined problem below; I think it's a very difficult one. I join 2 data.frames t1 and t2 using merge(). In the resulting data.frame, which I named "testing", ...
0
votes
1answer
20 views

Opening a chm file containing merged files in a Qt application

In my Qt application we can open a help file (chm) by doing the following: QDesktopServices::openUrl(QUrl::fromLocalFile(_PathToTheCHMFile)); This seems to be the suggested way of doing things. And ...
1
vote
0answers
17 views

Rails: Merging a nested attribute with strong_params

In Rails 4, it's possible to merge extra parameters with user generated ones like so: params.require(:post).permit([:title, :body]).merge(user: current_user) It's also possible to include nested ...
0
votes
0answers
7 views

converting XSL2 to XSL1

today i downloaded the MapForce software as i had a requirement to do some XSL mapping. i created the mapping easily enough due to this wonderful software, however when i loaded into my integration ...
0
votes
0answers
15 views

In Xcode, how to merge 4 images into one new image by clicking a UIButton?

currently I'm doing some Xcode work as our University want us to work for our client, and I'm totally a freshman! The client want an iPad App to achieve a feature, which can show an image which ...
-2
votes
0answers
26 views

How to merge objects in javascript and still have the reference

I'm quite new in web developing, and i'm struggling here with a problem. I have 2 objects instances a & b from 2 different types A and B. I want that instance b will contain instance a and still ...
-3
votes
0answers
28 views

How can I apply region growing to watershed algorithm in matlab?

In a watershed algorithm, in order to segment an image, is it possible to apply the region growing algorithm? Actually I wrote the code below and I 'm stuck with the combination of theese two ...
1
vote
1answer
22 views

what is the best way to upgrade web.config?

I have a web application to which I wrote an upgrade utility. It rewrites the binaries and updates the web.config (with new sections, changed attributes, elements etc..). I want to preserve my ...
0
votes
1answer
41 views

Why does git generate conflicts during a merge that are auto-resolved by most merge tools such as kdiff3?

As stated in the title. I tried googling this but found no explanation for it so I looked at the kdiff3 documentation which provided some insight. The situation i'm running into is I do a merge from ...
4
votes
0answers
34 views

Is it possible to replace TortoiseSVN's merge algorithm with a “better” one?

Using the merge functionality in SVN (through TortoiseSVN) since a few month, I have the feeling that SVN reports way too often that a conflict occurs. So I am looking for a way to make (Tortoise)SVN ...
0
votes
0answers
13 views

IntelliJ IDEA: SVN merge

I have IntelliJ IDEA 12.1.3 installed and I have trunk and branch in SVN. I use IDEA to merge from branch to trunk, and call command Subversion->Integrate Directory. Source 1 is branch, Source 2 is ...
1
vote
1answer
25 views

Show Merge-History before Committing

svn log has a --use-merge-history option that shows all revisions that are part of the merge. How can I get the same information for the merges in my working copy, before I commit? E.g. after I run ...
0
votes
2answers
34 views

Finding changes in a Git merge

Using git bisect I found the culprit commit - it is a merge commit (I'm on the master branch) I'm trying to isolate the buggy code but the merge included some commits from the merged branch and I ...
0
votes
0answers
14 views

TFS Merge From Main to Dev

I've got a team of 6 developers working on a big project that has a basic branch stategy. This has been working well for us, but I have a question about what TFS shows when you going into Source ...
1
vote
1answer
21 views

Can I merge multiple consecutive changesets into a changeset in Mercurial

Let's say I have changeset A, and I make changesets B1, B2, and B3 on top of A, while another developer makes changesets C1, C2, and C3 on top of A: B1 --- B2 --- B3 / --- A \ ...
-4
votes
1answer
56 views

C# Joining 3 Lists with Linq [closed]

I want to join 3 Lists that have the following format: List1: CountryID | CountryData | regionUID =================================== 12 | Has good gras | 4567 12 | nice ...
0
votes
0answers
3 views

how to use pysvn.Client.merge_peg2 to achieve cherry-pick merge

How can I use the pysvn.client merge related functions to achieve the cherry-pick merge, merge specific revisions (or revision ranges) from one branch to another, svn merge [-c M[,N...] | -r N:M ...
1
vote
0answers
35 views

Why does a 'git pull' not also update the remote branch I pulled from?

I have a forked repository, which is set up as a remote called origin, and it was forked from the original repository which I have push access to, called upstream. I have checked out a patch release ...
0
votes
2answers
29 views

combine two dataframes in R based on common columns

I have to combine two data-frames which look like this I want to take the common column among the data-frames and join them together. Rows in two data-frames will be completely different. a b ...
1
vote
1answer
35 views

R: merge data frames for cohen's kappa

I'm trying to analyze some date using R but I'm not very familiar with R (yet) and therefore I'm totally stuck. What I try to do is manipulate my input data so I can use it to calculate Cohen's ...
0
votes
0answers
8 views

merging multiple queries and sorting in postgresql 9.2

I want to sort table based on 'last_name' column.But if there is an entry as '-' in last_name the it should take from 'first_name' column. And output should be in sorted order. I am using postgres ...
1
vote
1answer
55 views

Merging more than 2 dataframes in R by rownames

I gather data from 4 df's and would like to merge them by rownames. I am looking for an efficient way to do this. This is a simplified version of the data I have. df1 <- data.frame(N= ...
0
votes
1answer
81 views
+50

How to merge multiple datatables (every datatable return one row) in one row

I have multiple data tables : i want to merge them (My P.K : emp_num) var tblEmp_data = new DataTable();//one row var tblEmp_time = new DataTable();//one row var tbl_emp_mission = new ...
-3
votes
1answer
46 views

What's the difference between 'git merge' and 'git rebase'?

I'm trying to understand ... What's the difference between git merge and git rebase?
0
votes
0answers
19 views

Update JIRA issues with info about commits that have been merged

I work with a product where we release a new major version of our product each 6 months but we always maintain the two previous releases and we release service packs of those every three weeks. We ...
0
votes
1answer
16 views

Combine two cursors (merge?), by keeping all distinct IDs from both cursors

Say I have two cursors(called A and B). A and B has some columns identical, but the only true relation between the two is a single column, call it specialID. Cursor A is filled via a ContentProvider, ...
1
vote
0answers
18 views

Is there a solution for handling non-linear release schedules with Git-flow?

The Git flow model is working well for our company so far, but we're wondering about a solution for handling this hypothetical situation. I searched around a bit, but I think my lack of proper ...
-3
votes
3answers
42 views

Merge the data of two arrays of hashes based on values

I want to join two arrays. Both arrays contain hashes that have a single key in common: object_id. data1 = [ {"pid"=>"126199850741820_2172905", "object_id"=>606621809366286, ...
0
votes
1answer
28 views

Merge two XML files in java and make single xml

merge 2 xml files Hi Guys, I am facing problem in merging 2 xml file. Scenario is mentioned below. Please have a look and response if you have any idea. Suppose a class Output.java contains 6 ...
0
votes
1answer
22 views

Git (Extensions) - undoing branch merge /hard reset and doing it properly

Right, this may sound like a bit of an odd question, but I think I've done something stupid. I had two different branches (with a very small number of changes), and I wanted to merge SOME changes ...
0
votes
1answer
37 views

aggregate zoo object index classes date

Iam trying to merge zoo objects with different index classes. Because the index classes are different I have tried to aggregate the the first zoo object as index class date. > dput(ldr_fund) ...
0
votes
0answers
22 views

Git Submodule Merge

I have a git repository, and in a branch I've created a submodule. The submodule, called foo, replaces a file called foo. The foo repository contains one file called bar. I committed my changes on ...
0
votes
0answers
23 views

A way to print mailing labels from an iOS app

Is there a way ( 3-rd party SDK maybe ) that allows an app to pass in contact names/data in order to generate labels ( e.g. mailing labels ) that the calling app can then print? Example calling ...
1
vote
1answer
21 views

git merge into master only overwrite changed files

Is it possible to merge branch edits into branch master with the following scenario: many changes were made on edits as well as new files added. many changes were also made to master as well as new ...
0
votes
0answers
16 views

Checked out file was ignored on merge

I merged trunk to my dev branch several times. Now I see that some files don't have changes made in branch. Those files were checked out (with my local changes) when I done merges. Now if I try to ...
0
votes
1answer
16 views

Hibernate : merge detatched instance data in to persistent instance

Session session = HibernateUtil.getSessionFactory().openSession(); Transaction tx = session.beginTransaction(); Course c1 = (Course) session.get(Course.class, 1); tx.commit(); session.close(); ...
0
votes
0answers
20 views

setError() doesnt work on EditText from merged layout using <include layout=“@layout/address_from_merge” />

I m creating signup activity, & in its layout i m "merging address_from_merge"-layout, but at run time setError() doesnt get work on any EditText from merged layout,i.e. doesn't get validated ...
0
votes
1answer
22 views

How to use merge to insert value from a stored procedure

I am trying to do something like this: merge MembershipTEST as T using (select OrganisationID, Name From MembershipPending) as S on T.OrganisationID = S.OrganisationID and T.Name = S.Name when not ...
0
votes
1answer
42 views

Mail Merge from Excel to Word Treating Multiple Rows as One Record

I am trying to create code to perform the following during an Excel to Word mail merge. Have the following data: ID EV DI SE PR 1 A D A 10 1 A D A 10 1 A E B 5 1 B D ...
0
votes
0answers
12 views

StarTeam VCM Merging Main View to Release View

How can I merged my Main view changes to my Release view used for development? Sample data: MAIN VIEW: line 1: /*comment 1*/ line 2: /*comment 2*/ <- this is the update developer wants to merge ...
1
vote
2answers
27 views

VisualBasic 2010 - merge 2 strings and read them as a variable

i have this code, and i want to access some variables. Dim k1 as String = "Something" Dim k2 as String = "Something" ... to k230 ------------------Then i have this: Dim rnd = New Random() ...
0
votes
1answer
31 views

Merge two different XML files based on node value using XSLT

I am trying to merge two XML files using XSLT. I need to match the tradeId node value which must present in both files, and just copy all the content to file1. Any help would be welcome. All similar ...

1 2 3 4 5 88