Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8923675
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T07:11:46+00:00 2026-06-15T07:11:46+00:00

I have a git repository that is using codeigniter as a framework. The main

  • 0

I have a git repository that is using codeigniter as a framework. The main index.php differs from development to the production as it sets an environment variable (either “production” or “development”.

What’s the best way to tell git to ignore the changes in these two different environments? I don’t necessarily want to add it to .gitignore because it’s a vital file. Is there a way to simply suppress the changes?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T07:11:48+00:00Added an answer on June 15, 2026 at 7:11 am

    You could just leave the file modified and never commit it, but that is very annoying. And there are complicated methods out there making use of multiple branches and rebasing. But that gets very messy, too.

    The easiest solution I found to this is to use a smudge filter on your production environment. For details see the git book. You can use a smudge filter to replace a certain word with something else on checkout.

    On my setup I use this filter (you can just add this to the .git/config file on your server):

    [filter "htproduction"]
        smudge = sed 's/\\$site-mode\\$/$site-mode:production$/'
        clean = sed 's/\\$site-mode.*\\$/$site-mode$/'
    

    To activate this filter, add this line to .git/info/attributes (create that file if it doesn’t exist):

    index.php filter=htproduction
    

    The effect of this is, that all occurrences of $site-mode$ are replaced with $site-mode:production$ on your server. Now do something like this in your index.php file:

    if (strpos("$site-mode$", "production") !== false)){
        do_only_on_server();
    }
    

    You are strongly recommended to read up on smudge filters, to understand what’s going on and why I’m not doing if ("$site-mode$" == "$site-mode:production$") (which wouldn’t work).

    Note: This answer assumes you are running linux on your server. This method works on windows too, but sed will probably not be available.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a particular file in a git source code repository that contains production
I have a git repository that I am using and I've screwed up. I
I have a svn repository that I migrated to git using the tool svn2git.
I have a Git repository that I pull using a path similar to this:
I have a git repository that was originally created using git-svn. Now I have
we have a fairly huge svn repository that i access using git. so far
I have a very simple git repository that I've been using to learn git.
I have a Git repository on my local machine that I cloned from my
I have a github-based git repository that represents development up to a certain point,
I have a git repository that I'm trying to delete all files and folders

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.