I have created a default version of a file included in a git repository. It's important that when someone clones the repository, they get a copy of this file. However, I would like to set git so that it ignores changes to this file later. .gitignore works only on untracked files.

My motivation is that this file contains machine-specific information. I would like to provide default values, while allowing people to make local changes that won't get pushed back to the origin repository, creating merge conflicts when we pull new changes.

We are generally pretty lazy and use "git add ." a lot, so I'm pretty sure if I can't tell git to ignore this file, changes to it will end up getting committed and pushed.

To summarize,

  1. I would like to create a file, call it default_values.txt that is added to my git repository and is included when someone clones that repository.
  2. "git add ." should not add default_values.txt to the commit.
  3. This behavior should be passed on to any clones of the repository.
link|improve this question

1  
+1 - I'd really like to know this as well. – Jason Baker Dec 3 '10 at 18:28
Can you make use of git hooks to have a pre-commit hook that would abort a commit if the file modified is default_values.txt (say) ? – sateesh Dec 3 '10 at 18:37
1  
Git purists would say don't be lazy and use the staging area correctly, that is what it is for. – Xint0 Dec 3 '10 at 18:44
Git purists would say use smudge/clean scripts. It's the most maintainable solution. – Adam Dymitruk Jan 26 '11 at 21:22
feedback

4 Answers

The approach I've generally seen is to create a file with a different name, eg: default_values_template.txt and put default_values.txt in your .gitignore. Instruct people to copy default_values_template.txt to default_values.txt in their local workspaces and make changes as needed.

link|improve this answer
hmmm... maybe I could write a hook to automatically copy default_values_template to default_values if default_values doesn't exist? – Marc Dec 3 '10 at 18:47
This is the most common way to solve this in my experience. It's pretty much the path of least resistance in that it "just works", and you can easily make your code check whether the local config file exists and provide a helpful error if it doesn't. – Jani Hartikainen Dec 3 '10 at 18:49
People can forget to do this – Adam Dymitruk Dec 3 '10 at 18:50
I think the solution is indeed to do something like this, preferably with a script executed whenever you pull or clone. One idea would be that anything with a particular extension (say .basefile) gets copied to a file with the extension dropped and then the file name gets added to .gitignore in that directory. So I would create a file default_values.txt.basefile and commit that. I don't have the git or perl chops to do this, but I'll ask a friend who does and let you know how it works out. – Marc Dec 3 '10 at 22:11
Curious to know why this was downvoted... – Laurence Gonsalves Dec 5 '10 at 22:43
show 2 more comments
feedback

What you are searching for is git update-index --assume-unchanged default_values.txt.

See the docs for more details: http://www.kernel.org/pub/software/scm/git/docs/git-update-index.html

link|improve this answer
1  
this does not work. although it makes git add . ignore the file on the local branch, a clone of the archive does not have this behavior (if you change default_values.txt in the cloned archive, it will be added to the commit with "git add .") – Marc Dec 3 '10 at 22:06
Yes, because you are setting it just for the local repo. You cannot push this kind of information. – Yorirou Dec 3 '10 at 22:08
feedback

Take a look at smudge/clean scripting. This way you can version control the file but when it is checked out, you will "smudge" it by replacing the generic/place-holder data with machine specific data in the file.

When you commit it, you will "clean" it by replacing the machine specific information with generic or place-holder information.

Smudge/clean scripts must be deterministic in that applying them multiple times, in different orders will be the equivalent of just running the last one in the sequence.

The same can be applied with passwords if you need to expose your repository but the contents may contain sensitive information.

link|improve this answer
feedback

I suggest looking into submodules. If you place the machine specific files in a submodule, git add should ignore it.

link|improve this answer
this is a good idea, but then I also have to put the single file repository on the git server too, which is less than optimal, only because we're using github and have a limited number of repositories. – Marc Dec 3 '10 at 18:48
Way too much overhead – Adam Dymitruk Dec 3 '10 at 18:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.