For some files that change continuously (game config based on yaml),
I would like to transfer only my changes and ignore the rest.
I was hoping that it would be possible to filter using comments?
In other words, search for differences but only show me those that are commented in file B.
With a merge, there is too great a risk that unwanted changes will be transferred
or that a single character will be lost – the files are quite vulnerable in this regard.
It occurred to me that regular expressions might be helpful here, but I have little experience using them.
I use kdiff3 0.9.98 (64 bit) under Windows
I can’t use a newer version because there is a bug with 2 open files + a merge file.
You tried to use the command rsync? I am very newbie with this command but make an exact copy.
i.e. rsync -avhP /home/krovikan/ /homeCOPIA/krovikan copies all my user home to other disk, but only the new and modified files and folders). When the command is done, I make a rsync -avhP --delete /home/krovikan/ /homeCOPIA/krovikan to clear in the copy files that don’t exist in my user.
Why not use only the command rsync -avhP --delete /home/krovikan/ /homeCOPIA/krovikan to make the copy. Because with --delete, first delete files and folders and after copy the new ones.
I don’t quite understand what you’re getting at. I want to adjust two files that are almost identical but sometimes differ in many values so that I can transfer my own values to the latest file again and again. That’s why I need a diff program—in this case, the file with my values is outdated in terms of many other values, so merging is often not easy.