I zipped a rails project from OS X and sent it to a colleague who works on Windows. He updated the source, zipped the whole project folder and sent the zip file back to me.
After unzipping the project, I found that the file permissions information is kind of lost. For example, the script/server
is changed from -rwxr-xr-x
to -rw-r--r--
. Is there a way to preserver the file permission flags, when transferring files between mac and windows?
Thanks