我在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版本支持
3 回答
肥皂起泡泡
TA贡献1829条经验 获得超6个赞
如果文件已经设置了+ x标志,git update-index --chmod=+x则什么也不做,并且git认为没有要提交的内容,即使该标志没有保存到仓库中。
您必须首先删除该标志,运行git命令,然后将该标志放回原处:
chmod -x <file>
git update-index --chmod=+x <file>
chmod +x <file>
然后 git看到更改,并允许您提交更改。
- 3 回答
- 0 关注
- 941 浏览
添加回答
举报
0/150
提交
取消