Is it possible to make .gitignore changed according to environment variables

前端 未结 3 1615
余生分开走
余生分开走 2021-01-27 06:27

Is it possible to add to .gitignore rules depends on environment variables?

for example

if -e $(ENV_VAR) \"AAA\"
!liba.so
else
liba.so

相关标签:
3条回答
  • 2021-01-27 06:51

    Currently the answer is no Yes, but not using an environment variable.

    My use case is simple; I'd like to avoid accidentally checking in changes that I've made to a specific file so I can run my code locally.

    Let's say I add my super secret password to the src/assets/secrets.xml file so that I can run my code locally, but I never want my password to leak to github so it can be found with tools like this.

    Originally I thought having the ability to export GITIGNORE=path/to/that/file would be helpful in this circumstance.

    But since that's not an option, here's how to accomplish the same goal.

    git update-index --assume-unchanged src/assets/secrets.xml
    

    To undo this effect:

    git update-index --no-assume-unchanged src/assets/secrets.xml
    

    After re-reading the OP's question a couple of times, I'm not sure if this will do what he's asking.

    0 讨论(0)
  • 2021-01-27 06:54

    The answer is no.

    Gitignore rules are completely static. Further that would not even make any sense. Once a file is in the repo, gitignore does not apply to it anymore – it only prevents new files from being added.

    That being said, you can have a local “gitignore”: anything in .git/info/exclude will also be ignored. Within the limits I just explained.

    0 讨论(0)
  • 2021-01-27 07:15

    The answer is no. Gitignore rules are static. You can turn around it by dynamically creating your .gitignore file. So, you will also have dynamically created static rules.

    This can be easily done within the application building system such a Makefile. The .gitignore file can rebuilt each time the project is built.

    Example Makefile:

    all: my_app .gitignore
    
    .gitignore: some deps
        cp my_static_gitignore_rules .gitignore
        echo 'dynamically_created_rule1' >> .gitignore
        echo 'dynamically_created_rule2' >> .gitignore
    
    my_app: my_app.c
        ...
    
    0 讨论(0)
提交回复
热议问题