- on your repo's root, run :
find . -type f | xargs chmod -x - commit this change on files :
commit -n -m 'fix: files permission from 100755 to 100644' - then with
vim .git/config, setfilemodeoption tofalse
[core]
filemode = false
| import sys | |
| import re | |
| def split_g4_vrml_file(afile): | |
| one_string = open(afile).read() | |
| split_string = one_string.split('#') | |
| file_output_list = {} | |
| camera = "" | |
| temp = re.compile("---------- (.*)") | |
| obj_name = re.compile("(.*): (.*)\..*") |