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.
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.
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
You need to investigate .gitignore files.
git help gitignore
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)
In case you have files already added to repository, but need to remove/ignore them. Follow these steps:
Since one of the benefits of TortoiseGit
is to use the UI, especially if you have used other products like TortoiseSVN
and TortoiseHg
, here are some UI ways to achieve this:
File not already added
An easy way to add files to the .gitignore
exclusions is when you are selecting files to be staged when you do a git commit
through Tortoise - Tortoise will list all non-ignored files which aren't currently in your repo under the Not Versioned Files
box at the bottom of the commit screen:
Unwanted file already added by mistake
If you've already committed or pushed the undesirable file, another way in newer (circa 1.8.14) versions of TortoiseGit
to remove an existing file from your repo branch and add it to one of the .gitignore
s is hidden under the right mouse function Delete and add to ignore list
:
You then have several .gitignore
options to elect either on whether to add just this file or wildcard matches, and to which .gitignore
to add it to - local folder, repo root, or your `.git/info/exclude'.
However, right at the last minute, you are given the opportunity to keep the local copy of the file: