using gitignore to ignore (but not delete) files
Asked Answered
R

5

112

I have a tmp directory in my git repo I'd like to still exist, but be ignored. I added it to .gitignore, but git status still tells me about changes to files in that directory. I tried git rm -r --cached, but that removes it from the remote repo. How can I stop tracking changes to this directory, but still allow it to exist? I also need to do this for 1 file, but changes to that also show up in git status after .gitignoreing them. What should I do?

Romie answered 11/6, 2011 at 16:40 Comment(1)
please write down what exactly does your .gitignore file look like?Jankell
M
208

Instead of .gitignore, you can update local git repository by running following command:

git update-index --assume-unchanged <file>

In this case a file is being tracked in the origin repo. You can modify it in your local repo and git will never mark it as changed. Read more at:

Macdougall answered 8/5, 2013 at 13:31 Comment(13)
My love of git may have just doubled.Headrest
This should be the accepted answer. Thanks for linking to that.Grindstone
Is there a way to push this to the remote repo?Ringnecked
I'm using git version 1.8.1.2 and I git add has no effect, to no push available. But you can revert this.Macdougall
hmm i would rather mark a file as "it is not a git file, never sync it with git, even in someones other repo"Hylophagous
You can revert it with git update-index --no-assume-unchanged <file>. If you want to list them git ls-files -v | grep '^h'.Illimani
This has no effect on my local repo. It says "Ignoring path xyz/" but on git status, still shows that path in the modified list.Duntson
@Duntson you have to update-index before you make git add. If you added something ("changes to be committed") then update-index will apply from this moment on. Order is important.Macdougall
@stkent you are right :) Well, that's not my fault :) I updated the description.Macdougall
please mark this answer so it may help others as wellPolka
@Duntson - it can only be done to individually files. I don't know of a way to do it recursively..Madeira
Now we can push the placeholder credential/config files to the remote, without deleting them. it should be the accepted answer!!!Morehead
They say --skip-worktree is better than --assume-unchanged for this purpose - https://mcmap.net/q/11542/-how-do-i-make-git-forget-about-a-file-that-was-tracked-but-is-now-in-gitignore ; https://mcmap.net/q/11287/-git-difference-between-39-assume-unchanged-39-and-39-skip-worktree-39Pecos
E
13

Ignoring changes made to files while allowing them to exist is the exact purpose of .gitignore. So adding the files (or directories) to .gitignore is the only thing you have to do.

But your problem is that git is already tracking the files you want to ignore and .gitignore doesn't apply to tracked files. The only way to stop this tracking is to tell git to remove them. By using git rm --cached, you prevent git from deleting your local files, but any other repository getting your changes will apply the removal. I don't think there's a way to avoid that from your own repository. You must do something on the other repositories, or accept the files will be removed.

To prevent the removal on each other repository you can:

  • (obviously) backup the files somewhere, pull the changes and restore the files,
  • or also git rm --cached the files and commit before pulling your changes. Git will nicely merge the two removals without touching the already untracked files.
Epistemic answered 11/6, 2011 at 18:3 Comment(2)
That doesn't have to be true ("stop tracking = remove file"). You can still have a file tracked in a repo and not to see any changes made, using: git update-index --assume-unchanged <file>. Take a look at: blog.pagebakers.nl/2009/01/29/…Macdougall
this solved my problem because I need to remove file from pushed repositorie in git so git rm --cached <filename> -r and after this push changes to repositorie again so the file is removedHux
H
8

Put a / at the end of the directory name in your .gitignore file, i.e.

tmp/

If have tracked files inside that directory, you need to tell git to forget about them first (before you add the dir to the ignore list). Assuming you have nothing vital in there (i.e. that you can scratch it):

git rm -rf ./tmp/
git commit -m "untrack tmp dir"
mkdir tmp
echo tmp/ >> .gitignore
git add .gitignore ; git commit -m "add tmp/ to ignore list"

New files in that directory will not be tracked.

The --cached option to git rm only works on the index (pending changes more or less). It has no effect on the working tree or the status of what has been tracked or not.

Haemostasis answered 11/6, 2011 at 16:43 Comment(2)
I have that. Both the/dir/ and the/dir/*Romie
Hey Mat, if I have something like /Media in different folders that I'd like to ignore, is that possible? So like /1/Media, /2/Media, all the way up to like 99?Clung
L
5

.gitignore has no effect on tracked files.

What you want is to set the assume-unchanged bit on the files in the tmp/ directory. There's a good explanation how to do that here: Git: untrack a file in local repo only and keep it in the remote repo

Also, one-liners for setting assume-unchanged on all files in a directory - git update-index --assume-unchanged on directory .

Lindeman answered 25/2, 2013 at 18:21 Comment(0)
K
1

It sounds like you are trying to track a file (e.g. index.php), add it to a remote repository, then stop watching tracking it, while keeping the file in the remote (i.e. keep index.php unchanged on the remote repo while changing it locally).

From what I understand, git cannot do this. You can either track a file, or not. If you track a file, it exists in the remote repo, and changes when you commit changes to it. If you don't track a file, it doesn't exist in the remote repo.

Because it is not possible to do exactly what you want with git, there are potentially other solutions, depending on your exact situation. For example, why do you not want index.php to change on remote when you change it locally? Are there user-specific settings in the file? If this is the case, you can do:

cp index.php index_template.php
git rm --cached index.php

Now edit index_template.php to be as you want it to appear on the remote repo. Add something to your README to tell the people using your repository that once they clone it, they must copy index_template.php to index.php and edit it to suit their needs.

git add index_template.php
git add README
git commit -m 'added template index.php file'
git push

When someone clones your repo, they must create their own index.php. You've made it easy for them: simply copy index_template.php to index.php and revise it with computer-specific settings.

Kal answered 24/7, 2012 at 20:37 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.