I moved a bunch of my git repositories to another OS by copying to an external hard drive. And now when I do git diff
it reports all the files modes have changed.
diff --git a/.gitignore b/.gitignore
old mode 100644
new mode 100755
diff --git a/.npmignore b/.npmignore
old mode 100644
new mode 100755
diff --git a/.travis.yml b/.travis.yml
old mode 100644
new mode 100755
diff --git a/LICENSE b/LICENSE
old mode 100644
new mode 100755
diff --git a/README.md b/README.md
old mode 100644
new mode 100755
I don't really know much about file permissions, what am I supposed to do about this?
Commit the mode changes? Change the mode back for all non-executable files? git reset?