I am currently working on a PXE boot environment that I would like to contribute to version control.
The file system and server will be Linux (SLES, if you know).
I considered using some kind of hack that retains file ownership / permissions through getfacl -R -P, but this does not apply to symbolic links or devices. And this is disgusting.
Difficult things I need to cover:
- file ownership
- File Permissions (No ACLs)
- devices
- symbolic links
Are there any version control systems that will cover my needs?
Note. Instead of “block volume”, I need to put the “file set” in the revision control and save the individual changes.
source
share