-
Commonly faced Issues¶
-
File permissions in Git bash is different from gerrit remote repo Check the existing remote file permissions with the following command:
Which should return something like 100644git ls-files --stage
Update the permissions with the following command
Check the file permission againgit update-index --chmod=+x 'name-of-shell-script'
Which should return something like 100755git ls-files --stage
Commit changes and push!