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
Then add .gitignore to your git repository and commit:
|
|||||
|
|
You need to investigate .gitignore files.
|
|||
|
|
|
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
|
|||
|
|