Hey I have my folder with irrlicht source (which is uber modified awesomeness)
And there is irrlicht 1.8 release
now I'd like to Meld/Merge, is there any way to do this on a folder to folder basis???
I really like the linux VCS merge tool Meld... any way of setting this to compare two folders?
is there a way to run "diff" between two folders?
Linux Diff Tool/Utility ---> HELP!!!
Re: Linux Diff Tool/Utility ---> HELP!!!
According to the website of Meld:
http://meldmerge.org/Meld is a visual diff and merge tool targeted at developers. Meld helps you compare files, directories, and version controlled projects.
Re: Linux Diff Tool/Utility ---> HELP!!!
You really should learn at least one version control system. Just about any of them would do that.
Re: Linux Diff Tool/Utility ---> HELP!!!
VCS would do that, but the problem is when you already have a bunch of changes which never had been tracked by one. The usual diff tool is certainly diff (now there's a suprise...) which can also compare directories. But the problem if you haven't kept your changes in simple patches so far is that you will now have one big ass piece of a patch where you probably can't tell anymore which line belonged to which feature. At least I had this trouble when I started out modifying Irrlicht and wasn't careful in my first year... so well - I did go through the whole big mess of patch line for line and started splitting it up by hand into pieces until I got it split into simpler patches (took me a full week...). And those I could then apply one-by-one to Irrlicht. And from there on I either created a patch for every single change I made or used mercurial (which has revisions so it can always create patches per command-line for those). Git would also have worked certainly.
Anyway use a version control system - once you get used to it you don't ever _want_ to work without one again.
Anyway use a version control system - once you get used to it you don't ever _want_ to work without one again.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm