Git global core.fileMode false overridden locally on clone

前端 未结 2 556
时光说笑
时光说笑 2021-01-11 15:34

Reading this, I was able to configure both globally and locally my fileMode config to false.

However, when I git clone, git keeps initializ

2条回答
  •  情深已故
    2021-01-11 15:49

    git clone --config core.filemode=false YOUR_REPOSITORY
    

    for further information refer to the usage information of git clone, or just enter:

    git clone
    

    without any arguments

提交回复
热议问题