Git pull如何忽略指定文件
巴扎黑
巴扎黑 2017-05-02 09:38:48
0
1
630

同一套代码服务器和开发环境有不同的配置文件,通过.gitignore我可以在开发的时候忽略配置文件的提交,但是我的需求不是这样,我需要把配置文件加入版本控制,但是服务器并不需要拉取开发端的配置文件。

也就是说,我在服务器上git pull代码的时候需要忽略配置文件,应该用什么命令呢?

我使用类似git update-index --assume-unchanged config/config.php的命令并没有作用。

巴扎黑
巴扎黑

reply all(1)
仅有的幸福

You can modify your config on the server so that the configuration files on the server will not be overwritten when you git pull.
(ps: It is recommended to use rsync to implement code online deployment.)

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!