Jump to page: 1 2 3
Thread overview
File compare/merge
Apr 01, 2013
Walter Bright
Apr 01, 2013
Brad Anderson
Apr 01, 2013
Luís Marques
Apr 03, 2013
Martin Nowak
Apr 04, 2013
John Colvin
Apr 01, 2013
Jesse Phillips
Apr 01, 2013
Nick Sabalausky
Apr 01, 2013
Tobias Pankrath
Apr 01, 2013
Andrej Mitrovic
Apr 03, 2013
Rainer Schuetze
Apr 03, 2013
Tavi Cacina
Apr 01, 2013
Kagamin
Apr 01, 2013
Adam Wilson
Apr 01, 2013
Jonathan M Davis
Apr 02, 2013
Sergei Nosov
Apr 02, 2013
Jacob Carlborg
Apr 02, 2013
Iain Buclaw
Apr 02, 2013
Stewart Gordon
Apr 02, 2013
Kagamin
Apr 04, 2013
Stewart Gordon
Apr 03, 2013
Vladimir Panteleev
Apr 02, 2013
Michael
Apr 03, 2013
Martin Nowak
Apr 03, 2013
Jonas Drewsen
Apr 06, 2013
SomeDude
Apr 06, 2013
dennis luehring
Apr 06, 2013
captaindet
Jun 03, 2013
Lionello Lunesu
April 01, 2013
Life has gotten a lot easier for me trying to manage multiple branches of D since I've been using file compare/merge tools.

I use winmerge for Windows, and meld for Linux. They are both free, and work great.

What do you use?
April 01, 2013
On Monday, 1 April 2013 at 19:53:23 UTC, Walter Bright wrote:
> Life has gotten a lot easier for me trying to manage multiple branches of D since I've been using file compare/merge tools.
>
> I use winmerge for Windows, and meld for Linux. They are both free, and work great.
>
> What do you use?

I just use WinMerge when necessary but I mostly use `git diff` day to day.
April 01, 2013
On 4/1/13 3:53 PM, Walter Bright wrote:
> Life has gotten a lot easier for me trying to manage multiple branches
> of D since I've been using file compare/merge tools.
>
> I use winmerge for Windows, and meld for Linux. They are both free, and
> work great.
>
> What do you use?

It's a good discussion. Love meld but OSX installation is tenuous so I gave up on it. This morning I installed Octosplit (http://goo.gl/sgNWw) on Chrome this morning, it took seconds and it made diff viewing a lot better.

Andrei
April 01, 2013
On Monday, 1 April 2013 at 19:53:23 UTC, Walter Bright wrote:
> Life has gotten a lot easier for me trying to manage multiple branches of D since I've been using file compare/merge tools.
>
> I use winmerge for Windows, and meld for Linux. They are both free, and work great.
>
> What do you use?

I use fugitive for Vim.
https://github.com/tpope/vim-fugitive

But I haven't learned much of it and probably could benefit from meld (I've never used).
April 01, 2013
On Mon, 01 Apr 2013 12:53:23 -0700
Walter Bright <newshound2@digitalmars.com> wrote:

> Life has gotten a lot easier for me trying to manage multiple branches of D since I've been using file compare/merge tools.
> 
> I use winmerge for Windows, and meld for Linux. They are both free, and work great.
> 
> What do you use?

I've been using Beyond Compare <http://www.scootersoftware.com/> for over ten years now. Can't live without it, and wouldn't want to anyway ;) Heck, I use it a lot even for non-development purposes.

April 01, 2013
On Monday, 1 April 2013 at 20:36:08 UTC, Nick Sabalausky wrote:
> On Mon, 01 Apr 2013 12:53:23 -0700
> Walter Bright <newshound2@digitalmars.com> wrote:
>
>> Life has gotten a lot easier for me trying to manage multiple
>> branches of D since I've been using file compare/merge tools.
>> 
>> I use winmerge for Windows, and meld for Linux. They are both free,
>> and work great.
>> 
>> What do you use?
>
> I've been using Beyond Compare <http://www.scootersoftware.com/> for
> over ten years now. Can't live without it, and wouldn't want to
> anyway ;) Heck, I use it a lot even for non-development purposes.

kompare and (depending on machine) kdiff3. They only compare files though.

I'm using vimdiff if working over ssh.
April 01, 2013
Also for OS X: http://www.kaleidoscopeapp.com/
April 01, 2013
On 4/1/13, Nick Sabalausky <SeeWebsiteToContactMe@semitwist.com> wrote:
> I've been using Beyond Compare <http://www.scootersoftware.com/>

Me too.

And the obligatory tip for anyone trying to use it with Git:

Add this to your .gitconfig file (and make sure you're setting the path to BCompare.exe and not BComp.exe):

[diff]
	tool = bc3
[difftool "bc3"]
	path = C:/program files/beyond compare 3/BCompare.exe

And some aliases for .bashrc I use myself:

alias bdiff='git difftool --dir-diff'
alias bcdiff='git difftool --dir-diff --cached'
alias bhdiff='git difftool --dir-diff head~1'
April 01, 2013
http://www.devart.com/codecompare/
It's hoggy, but has syntax highlighting and nice interface.
April 01, 2013
On Mon, 01 Apr 2013 12:53:23 -0700, Walter Bright <newshound2@digitalmars.com> wrote:

> Life has gotten a lot easier for me trying to manage multiple branches of D since I've been using file compare/merge tools.
>
> I use winmerge for Windows, and meld for Linux. They are both free, and work great.
>
> What do you use?

I use meld on Linux and Windows. I find it easier to have one solution that works the same across the platforms I work on.

-- 
Adam Wilson
IRC: LightBender
Project Coordinator
The Horizon Project
http://www.thehorizonproject.org/
« First   ‹ Prev
1 2 3