github - git 如何本地忽略文件,而保留远端的同名文件
仅有的幸福
仅有的幸福 2017-05-02 09:30:06
0
5
606

同一个项目A,多人合作开发,但是项目A里面有个config.php配置文件,不同成员有各自的数据库环境,如何确保其他成员修改了本地配置文件而不提交,或者提交了但不覆盖远端的config.php?

仅有的幸福
仅有的幸福

reply all(5)
为情所困

Create a config.simple.php file, and then add the config.php file to gitignore, so that after different developers clone the code, they can change config.simple.php to config.php and replace it with their own configuration, like this It will not affect others just because someone changes the configuration

黄舟

gitignore

Ty80

gitignore file writing rules…

为情所困

The topic can be summarized: In a distributed environment, how can files ignored by oneself not affect others
Using .gitignore files is not satisfactory, because .gitignore files will also be distributed to others along with the warehouse
It is best to control this file yourself

Then
you might as well try: git config --global core.excludesfile $yourfilepath

仅有的幸福

.gitignore

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!