1
vote
4answers
44 views
Diff Tool That Ignores Newlines
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 (usual …
0
votes
1answer
40 views
3-way merge in JavaScript or PHP
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.
I fo …
0
votes
4answers
42 views
How to merge duplicates in 2D python arrays
Hi, I have a set of data similar to this:
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
…
1
vote
6answers
52 views
Free merge tools
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 …
0
votes
0answers
17 views
svn reintegrate a branch with externals fails
using svn 1.6.6 with tortoisesvn 1.6.6
what I am doing:
1) Apply external properties to a folder in the trunk (both single file and folder external, externals are binary files)
…
0
votes
3answers
39 views
How to create branch for the single file?
Hi community,
I have a product which comes in two versions, and up to now I was able to manage the differences between them only using compiler flags and #ifdefs. Now I want to ha …
2
votes
2answers
54 views
How is this a conflict
Hi,
i'm just testing git to find out if i could use it for my work. I ran into a problem that seems small but could become a real one with the real code.
My file looks like:
text.t …
0
votes
2answers
81 views
git: Move a file/directory but still merge changes easily?
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 w …
1
vote
2answers
44 views
achieving a complex sort via Linq to Objects
I've been asked to apply conditional sorting to a data set and I'm trying to figure out how to achieve this via LINQ. In this particular domain, purchase orders can be marked as …
0
votes
3answers
65 views
Excel VBA merge multiple columns into one on separate rows
Hi there!
I have an excel 2007 worksheet open with 5 colums and +/-5000 rows of data.
What I want to do is create a macro that will:
insert 3 blank rows under each record
copy …
0
votes
0answers
13 views
MySQL split and merge DB
Hi
I'm looking for a tool that can split data into several DB.
And also looking for a tool that merge DB.
First case, 10 people use the same DB, now I need to seperate each user …
1
vote
1answer
34 views
git: merge a portion of one branch’s source tree into another, regardless of individual commits
I understand how to merge branches together in git, and I love how easy it makes it.
I have a branch that looks like this:
project/
|--subproj1/
| |---(files)
|
|--subproj2/
…
0
votes
1answer
39 views
Git pull from several repos in one command
I'd like to keep Git repositories on four machines synchronized, and all of them are private repos. Is it possible to set up a single Git repository to pull from the other three ma …
0
votes
4answers
79 views
Git pull certain branch from github.
I have a project with multiple branches. I've been pushing them to github, and now that someone else is working on them i need to do a pull from github. It works fine in master. Bu …
2
votes
1answer
66 views
git rebase interactive: squash merge commits together
Hi,
I wanted to have a simple solution to squash two merge commits together during an interactive rebase.
My repository looks like:
X --- Y --------- M1 -------- M2 (my-featu …
