When doing a git clone git://github.com/blasto333/PHP-Point-Of-Sale.git on one server the files permissions are (I am showing one file but it is like this for all of them):
-rw-r--r-- 1 chrism chrism 3297 Apr 1 19:12 index.php
On the second server it is:
-rw-rw-r-- 1 rrdiaper rrdiaper 3297 Apr 1 19:14 index.php
On a third server it is:
-rw-r--r--@ 1 cmuench cmuench 3297 Sep 17 2010 index.php
The 2nd server is complaining because the file is group writable (php suExec). I know I can fix it with a chmod -R 644, but I would rather understand why permissions are different.