猿问

如何在Windows上的Git中创建文件执行模式权限?

我在Windows中使用Git,并希望通过一次提交将可执行的Shell脚本推送到git repo中。


通常,我需要执行两个步骤(git commit)。


$ vi install.sh

$ git add install.sh  

$ git commit -am "add new file for installation" # first commit

[master f2e92da] add support for install.sh

 1 files changed, 18 insertions(+), 3 deletions(-)

 create mode 100644 install.sh

$ git update-index --chmod=+x install.sh

$ git commit -am "update file permission"        # second commit

[master 317ba0c] update file permission

  0 files changed

  mode change 100644 => 100755 install.sh

如何将这两个步骤合并为一个步骤?git配置?Windows命令?


提醒:两个答案都不错,git add --chmod=+x file新的git版本支持


偶然的你
浏览 942回答 3
3回答

肥皂起泡泡

如果文件已经设置了+ x标志,git update-index --chmod=+x则什么也不做,并且git认为没有要提交的内容,即使该标志没有保存到仓库中。您必须首先删除该标志,运行git命令,然后将该标志放回原处:chmod -x <file>git update-index --chmod=+x <file>chmod +x <file>然后 git看到更改,并允许您提交更改。
随时随地看视频慕课网APP
我要回答