Git给添加shell执行权限提交repo
Posted 宁静致远
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git给添加shell执行权限提交repo相关的知识,希望对你有一定的参考价值。
git ls-files --stage
100644 f23de29bb2d1d6434b8b29ae775ad8c2e48c5391 0 test.sh
644权限,默认不能执行
git update-index --chmod +xtest.sh
git ls-files --stage
100755 f23de29bb2d1d6434b8b29ae775ad8c2e48c5391 0 test.sh
现在文件是755可执行权限.
git commit -m "xxx!"
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100755 test.sh
以上是关于Git给添加shell执行权限提交repo的主要内容,如果未能解决你的问题,请参考以下文章
错误:对 user1/repo.git 的权限拒绝给 user2