Distributing git configuration with the code

后端 未结 4 705
迷失自我
迷失自我 2020-11-22 03:48

In trying to standardise the platform for the developers, one of my needs would be to commit the .git/config so that everybody have the same CRLF config without

4条回答
  •  醉梦人生
    2020-11-22 04:27

    If you're using a Unix family operating system I would recommend just creating a symbolic link.

    ln -s .git/config git-config
    git add git-config
    git commit -m "Now tracking git config file"
    

提交回复
热议问题