search

Home  >  Q&A  >  body text

github - How does git ignore files locally and keep files with the same name on the remote end?

The same project A is developed by multiple people, but there is a config.php configuration file in project A. Different members have their own database environments. How to ensure that other members modify the local configuration file without submitting it, or submit it but Not overwriting the remote config.php?

仅有的幸福仅有的幸福2822 days ago660

reply all(5)I'll reply

  • 为情所困

    为情所困2017-05-02 09:32:06

    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

    reply
    0
  • 黄舟

    黄舟2017-05-02 09:32:06

    gitignore

    reply
    0
  • PHP中文网

    PHP中文网2017-05-02 09:32:06

    gitignore file writing rules…

    reply
    0
  • 为情所困

    为情所困2017-05-02 09:32:06

    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

    reply
    0
  • 仅有的幸福

    仅有的幸福2017-05-02 09:32:06

    .gitignore

    reply
    0
  • Cancelreply