I have two identical repositories on two separated internet-less machines.
The code is sensitive and cannot be exposed to the outside world (even not its diff).
How secure is a git bundle file which contains only a delta update?
I know that one cannot pull from it if he does not have the initial base - git bundle verify
will fail.
Opening the file with text editor does not reveal any segment of code.
Is there a way for a third party to open and see the code within?
How secure is it?