Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get started using git and tortoise-git.

Is there a way to hide files that should never be tracked completely? Currently, all temporary build files are in the same "Not Versioned" list as new files when I commit a change.

share|improve this question

3 Answers

up vote 14 down vote accepted

Create a text file called .gitignore in your root folder and add lines like the following to exclude files:

*.obj
test.c

Then add .gitignore to your git repository and commit:

$ git add .gitignore
$ git commit .gitignore
share|improve this answer
1  
Thanks! As a side note, the paths can be selected in tortoise-git's commit window, and be copied to lcipboard, which makes it easy t obase them into the .gitignore – peterchen Aug 10 '09 at 12:42

You need to investigate .gitignore files.

git help gitignore
share|improve this answer

TortoiseGit can add files to ignore list with many options.

Right click -> TortoiseGit -> Add to ignore list -> by filename / by extension

A dialog shows to choose options:

Ignore type

This file only (match absolute name),

Recursive (match same name)

Ignore file

.gitignore in root dir (need to commit)

.gitignore in included dir (need to commit)

.git/info/exclude (like a config file, stored locally)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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