On Windows OS, if you have a unix file with permission 100755 -rwxr-xr-x, after git add, the staged file will miss the x permission and becomes 100644 -rw-r--r-- as shown in git ls-files --stage. git add has the option `--chmod=+x' to handle this problem. Can gitpython also add this feature in index.add() method?
On Windows OS, if you have a unix file with permission 100755
-rwxr-xr-x, aftergit add, the staged file will miss thexpermission and becomes 100644-rw-r--r--as shown ingit ls-files --stage. git add has the option `--chmod=+x' to handle this problem. Can gitpython also add this feature in index.add() method?