Created
February 9, 2018 08:44
-
-
Save yoyoys/3663295504ff4950136a740f3736beee to your computer and use it in GitHub Desktop.
My gitignore for asp.net mvc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################################################ | |
# This .tfignore file was automatically created by Microsoft(R) Visual Studio. | |
# | |
# Local items matching filespecs in this file will not be added to version | |
# control. This file can be checked in to share exclusions with others. | |
# | |
# Wildcard characters are * and ?. Patterns are matched recursively unless the | |
# pattern is prefixed by the \ character. | |
# | |
# You can prepend a path to a pattern to make it more specific. If you do, | |
# wildcard characters are not permitted in the path portion. | |
# | |
# The # character at the beginning of a line indicates a comment. | |
# | |
# The ! prefix negates a pattern. This can be used to re-include an item after | |
# it was excluded by a .tfignore file higher in the tree, or by the Team | |
# Project Collection's global exclusions list. | |
# | |
# The / character is interpreted as a \ character on Windows platforms. | |
# | |
# Examples: | |
# | |
# # Excludes all files ending in .txt in Alpha\Beta and all its subfolders. | |
# Alpha\Beta\*.txt | |
# | |
# # Excludes all files ending in .cpp in this folder only. | |
# \*.cpp | |
# | |
# # Excludes all files ending in .cpp in this folder and all subfolders. | |
# *.cpp | |
# | |
# # If "Contoso" is a folder, then Contoso and all its children are excluded. | |
# # If it is a file, then only the "Contoso" in this folder is excluded. | |
# \Contoso | |
# | |
# # If Help.exe is excluded by a higher .tfignore file or by the Team Project | |
# # Collection global exclusions list, then this pattern re-includes it in | |
# # this folder only. | |
# !\Help.exe | |
# | |
################################################################################ | |
############# | |
# Resharper # | |
############# | |
/_ReSharper.* | |
*.ReSharper.* | |
############ | |
# Packages # | |
############ | |
packages/ | |
#################### | |
# VS Upgrade stuff # | |
#################### | |
UpgradeLog.XML | |
_UpgradeReport_Files/ | |
###################### | |
# Logs and databases # | |
###################### | |
*.log | |
*.sqlite | |
############### | |
# Directories # | |
############### | |
bin/ | |
obj/ | |
.vs/ | |
*.csproj.user | |
*.user | |
############### | |
# MAC files # | |
############### | |
# General | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Thumbnails | |
._* | |
# Files that might appear in the root of a volume | |
.DocumentRevisions-V100 | |
.fseventsd | |
.Spotlight-V100 | |
.TemporaryItems | |
.Trashes | |
.VolumeIcon.icns | |
.com.apple.timemachine.donotpresent | |
# Directories potentially created on remote AFP share | |
.AppleDB | |
.AppleDesktop | |
Network Trash Folder | |
Temporary Items | |
.apdisk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment