Tagged Questions

.gitignore is a file, which lists files and directories that Git should not include as part of a repository.

learn more… | top users | synonyms

168
votes
12answers
49k views

How do I tell Git to ignore “.gitignore”?

I just did a git init on the root of my new project. Then I created a .gitignore file. Now, when I type "git status", ".gitignore" appears in the list of untracked files. Why is that?
146
votes
9answers
38k views

Git ignore file for Xcode projects

Which files should I include in .gitignore when using Git in conjunction with Xcode?
81
votes
7answers
18k views

.gitignore file not ignoring

I have an already initialized git repo that I added a .gitignore file to, how can I refresh the file index so the files I want ignored get ignored?
53
votes
7answers
28k views

.gitignore - ignore any 'bin' directory

I have a directory structure like this: .git/ .gitignore main/ ... tools/ ... ... Inside main and tools, and any other directory, at any level, there can be a 'bin' directory, which I want to ...
31
votes
5answers
10k views

Difference in the paths in .gitignore file?

I've been using git but still having confusion about the .gitignore file paths. So, what is the difference between the following two paths in .gitignore file? tmp/* public/documents/**/* I can ...
27
votes
5answers
3k views

Making git “forget” about a file that *was* tracked but is now “.gitignored”

There's this file that was being tracked at one time by git, but now the file is on the .gitignore list. However, that file keeps showing up in git st after it's edited, so how would you force git to ...
16
votes
3answers
2k views

add #*# glob to .gitignore?

I want to add emacs autosave files to my .gitignore with the glob #*# but of course, lines starting with a hash are comment lines. How can I get this into my .gitignore without it being treated as a ...
14
votes
5answers
2k views

what should be in .gitignore file for a netbeans java project?

What should be the content of the .gitignore file for a java project in netbeans?
13
votes
1answer
2k views

What is the 'standard' content of .gitignore for an iPhone (Xcode) project?

What is considered the 'standard' content of .gitignore file for an iPhone (Xcode) project? PS: not sure if this needs to be a CW.
12
votes
3answers
4k views

How do gitignore exclusion rules actually work?

I'm trying to solve a gitignore problem on a large directory structure, but to simplify my question I have reduced it to the following. I have the following directory structure of two files (foo, ...
12
votes
2answers
2k views

Is there a way to tell git to only include certain files instead of ignoring certain files?

My programs generally generate huge output files (~1 GB) which I do not want to be backing up to the git repository. So instead of being able to do git add . I have to do something like git add ...
11
votes
4answers
1k views

Recommended .gitignore file for Python projects?

I'm trying to collect some of my default settings, and one thing I realized I don't have a standard for is .gitignore files. There's a great thread showing a good .gitignore for Visual Studio ...
11
votes
2answers
2k views

How to I add something to the .gitignore so that the match is not recursive?

How to I add something to the .gitignore so that the match is not recursive? For example, I wish to ignore the directory foo and the file bar.txt in the current directory, but not any that exist in ...
10
votes
2answers
368 views

How to exclude file only from root folder in GIT

I am aware of using .gitignore file to exclude some files being added, but i have several "config.php" files in source tree and I need to exclude only one, located in the root while other keep under ...
9
votes
2answers
3k views

Can't ignore UserInterfaceState.xcuserstate

I'm using Git for Xcode 4 project version control. I've explicitly added ProjectFolder.xcodeproj/project.xcworkspace/xcuserdata/myUserName.xcuserdatad/UserInterfaceState.xcuserstate to .gitignore, ...
9
votes
2answers
924 views

.gitignore files added inside Git submodules

I recently reorganized my dotfiles to live inside a Git repository at ~/Dropbox/dotfiles and I'm using pathogen to bundle all Vim addons inside ~/Dropbox/dotfiles/home/.vim/bundle. These addons were ...
9
votes
3answers
1k views

How to .gitignore all files/folder in a folder, but not the folder itself

i.e. I want to checkin a blank folder. Howto?
9
votes
2answers
6k views

Git ignore sub folders

I have a lot of projects in my .Net solution. I would like to exclude all "bin/Debug" and "bin/Release" folders (and their contents), but still include the "bin" folder itself and any dll's contained ...
9
votes
2answers
3k views

git ignore files only locally

Can I ignore files locally without polluting the global git config for everyone else? I have untracked files that are spam in my git status but I don't want to commit git config changes for every ...
9
votes
4answers
2k views

git: ignore everything except subdirectory

I want to ignore all files in my repository except those that occur in the 'bin' subdirectory. I tried adding the following to my .gitignore * !bin/* This does not have the desired effect, however: ...
8
votes
4answers
810 views

git ignore exception

I have a gitignore file that makes git ignore *.dll files, and that is actually the behavior I want. However, if I want an exception ( i.e. to be able to commit foo.dll), how can I achieve this?
8
votes
4answers
2k views

Using git, how do I ignore a file in one branch but have it committed in another branch?

I've got a project that I'm deploying to heroku. The source code tree includes a bunch of mp3 files (the website will be for a recording project I was heavily involved with). I'd like to put the ...
7
votes
2answers
832 views

How do I .gitignore and delete an already commited file without affecting other working copies?

I have a bare repository and two working copies - one on my machine, the other on the server. It turned out that I have to .gitignore a certain file that has to be specific for every machine. Let's ...
7
votes
2answers
250 views

git: can i commit a file and ignore the content changes?

every developer on my team has their own local configuration. that configuration information is stored in a file called "devtargets.rb" which is used in our rake build tasks. i don't want developers ...
7
votes
2answers
226 views

How can you indicate files to ignore in svn when using git and the git-svn bridge?

There is a master subversion repository that I've cloned a git repo from. I've got a lot of ignored files in my .gitignore that I'd like the svn repository to know about. I know that I can use git ...
6
votes
2answers
153 views

Git ignore all except subfolder

I searched through other questions but can't find a working solution for my project. Having a Magento project, I want to exclude everything except this: /app/design/frontend/default/theme_name # and ...
6
votes
3answers
321 views

Git: need to recursively 'git rm' the contents of all bin and obj folders

Someone by accident just commited all of their bin and obj folders to our repo (there are around 40 such folders). I would like to do a git rm -r on all of these folders. Is there a command to do ...
6
votes
4answers
640 views

gitignore without binary files

with git and .gitignore file, how git can ignore the binary files? example: $ g++ hello.c -o hello the "hello" file es a binary file, git can ignore this file ?
6
votes
2answers
1k views

.gitignore exclude files in directory but not certain directories

application/cache/* application/cache/folder/* application/cache/folder/onemorefolder/* This doesn't seem to be working. When I clone the project, there is no "application/cache" folder or ...
6
votes
2answers
5k views

Confusing .gitignore syntax

I was reading http://www.kernel.org/pub/software/scm/git/docs/gitignore.html and the 6 points used to explain the ignore patterns seem to be describing a custom variant of a glob search syntax. I am ...
6
votes
4answers
548 views

What .gitignore I should use with QT projects? (QT Creator)

So, after little thinking I have wrote the following: # In repository we don't need to have: # Compiled object files *.o # Generated MOC, resource and UI files moc_*.cpp qrc_*.cpp ui_*.h # Debug ...
6
votes
2answers
4k views

Git Ignores and Maven targets

Anyone know if it is possible to ignore all the instances of a particular directory in a file structure managed by git. I'm looking to exclude all the 'target' folders in a maven project with a ...
6
votes
2answers
1k views

Can I make vim respect my .gitignore files?

I was wondering if there is a way to get vim to read .gitignore files and use them to determine options not to present when auto-completing filenames. For example, working in python, I'd like to not ...
5
votes
4answers
194 views

Why doesn't gitignore work in this case?

I have two files I wish to ignore: .idea/workspace.xml someapp/src/.idea/workspace.xml I thought adding this single rule to .gitignore will suffice: .idea/workspace.xml But it only catches the ...
5
votes
1answer
209 views

Meaning of leading slash in `.gitignore` file

If I put a pattern in a .gitignore file with a leading slash, does the slash refer to the directory in which the .gitignore file is located, or does it refer to the root of the whole repository? (The ...
5
votes
3answers
468 views

Where does .gitignore file belong?

Does the .gitignore file belong in the .git folder structure somewhere or in the main source files?
5
votes
3answers
387 views

How do I open source my Rails' apps without giving away the app's secret keys and credentials

I have a number of Rails apps hosted on GitHub. They are all currently private, and I often will deploy them from their GitHub repository. I'd like to be able to make some of them open source, just ...
5
votes
2answers
1k views

.gitignore does not understand my folder wildcard on windows

I'm encountering a weird issue with .gitignore on Windows. I want git to ignore all .exe files, except those in the Dependencies folder (and all subfolders). So I have: .gitignore: *.exe ...
4
votes
4answers
126 views

How to apply gitignore afterwards?

I pushed my local repository to GitHub. In the process of committing my code, I forgot to create a .gitignore file. As a result, I have committed and subsequently pushed some folders and files that I ...
4
votes
4answers
68 views

GIT ignore files which are on repository

I need help on GIT. I have a file (config.php) which is on repository and which I want to have it on repository (Because I want it when someone git clone the repository and for a server configuration ...
4
votes
2answers
122 views

git ignore everything but some subdirectories

I need to control only "debian" subdirectories on my tree : pkg/.git pkg/.gitignore pkg/package1/package1-2.2.1/debian pkg/package2/package2-1.0/debian I tried this kind of .gitignore but it won't ...
4
votes
3answers
438 views

Can't understand how gitignore ingnores the folders

I want to create repository for my Magento project. There are lots of folders and files in root directory and I change time to time only one folder: app/code/local/ Everything else I want to ignore. ...
4
votes
2answers
288 views

How can I get the equivalent of .hgignore's regular expressions ^var/(?!\log|.dummy) and ^var/log/(?!\.dummy) in .gitignore?

I am converting my Mercurial repository to Git. Part of the file system looks like this: |-- .gitignore |-- .hgignore `-- var |-- .dummy |-- asdf `-- log |-- .dummy `-- ...
4
votes
5answers
646 views

Using .gitignore to ignore everything but specific directories

My issue is that I have a bunch of WordPress websites in my git repo, of which I want to selectively commit only the content of my themes folders, while ignoring the rest of the redundant files found ...
4
votes
1answer
251 views

Migration from svn to git: How do I create .gitignore files for a big repository with an unstable connection?

I've just migrated a big open source project from subversion to git. I am trying to do a git svn create-ignore, but after about 30 minutes it fails because the svn server connection sometimes fails: ...
4
votes
1answer
1k views

Ignore symbolic links in .gitignore

Is it possible to tell Git to ignore symlinks ? I'm working with a mixed Linux / Windows environment and, as you know, symlinks are handled very differently between the two.
4
votes
3answers
69 views

Git dealing with large amounts of files which shouldn't be checked into svn

I'm using git behind svn, and for each branch I have, I need to do a full build (which takes a few minutes). These build files should NOT be checked in, but they are intermingled with user-modified ...
4
votes
2answers
139 views

Ignoring a directory chain in git?

I need to ignore the following. In paths like /a/b/c/d/e/f/g, I need to ignore /d/e/f/g. I also need to be able to ignore every place /d/e/f/g appears beneath a. I tried d/e/f/g, but that did not ...
4
votes
2answers
179 views

Protect Files from Git

I'm using Git with WindRiver to manage a project of mine. The code is being managed, however the project files (such as .cproject, .project, .wrmakefile, and .wrproject) are not. However when I switch ...
4
votes
2answers
526 views

How could I ignore bin and obj folders from git repository?

I want to ignore bin and obj folders from my git repository. As I've found out, there is no easy way to do this in .gitignore. So, are there any other way? Using clean solution in Visual Studio?

1 2 3 4