码源中国.gitignore忽略文件配置

  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3.  
  4. # User-specific files
  5. *.suo
  6. *.user
  7. *.sln.docstates
  8.  
  9. # Build results
  10. .vs/config/applicationhost.config
  11. [Dd]ebug/
  12. [Rr]elease/
  13. x64/
  14. [Bb]in/
  15. [Oo]bj/
  16.  
  17. # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
  18. !packages/*/build/
  19.  
  20. # MSTest test Results
  21. [Tt]est[Rr]esult*/
  22. [Bb]uild[Ll]og.*
  23. .vs/applicationhost.config
  24.  
  25. *_i.c
  26. *_p.c
  27. *.ilk
  28. *.meta
  29. *.obj
  30. *.pch
  31. *.pdb
  32. *.pgc
  33. *.pgd
  34. *.rsp
  35. *.sbr
  36. *.tlb
  37. *.tli
  38. *.tlh
  39. *.tmp
  40. *.tmp_proj
  41. *.log
  42. *.vspscc
  43. *.vssscc
  44. .builds
  45. *.pidb
  46. *.log
  47. *.scc
  48.  
  49. # Visual C++ cache files
  50. ipch/
  51. *.aps
  52. *.ncb
  53. *.opensdf
  54. *.sdf
  55. *.cachefile
  56.  
  57. # Visual Studio profiler
  58. *.psess
  59. *.vsp
  60. *.vspx
  61.  
  62. # Guidance Automation Toolkit
  63. *.gpState
  64.  
  65. # ReSharper is a .NET coding add-in
  66. _ReSharper*/
  67. *.[Rr]e[Ss]harper
  68.  
  69. # TeamCity is a build add-in
  70. _TeamCity*
  71.  
  72. # DotCover is a Code Coverage Tool
  73. *.dotCover
  74.  
  75. # NCrunch
  76. *.ncrunch*
  77. .*crunch*.local.xml
  78.  
  79. # Installshield output folder
  80. [Ee]xpress/
  81.  
  82. # DocProject is a documentation generator add-in
  83. DocProject/buildhelp/
  84. DocProject/Help/*.HxT
  85. DocProject/Help/*.HxC
  86. DocProject/Help/*.hhc
  87. DocProject/Help/*.hhk
  88. DocProject/Help/*.hhp
  89. DocProject/Help/Html2
  90. DocProject/Help/html
  91.  
  92. # Click-Once directory
  93. publish/
  94.  
  95. # Publish Web Output
  96. *.Publish.xml
  97. *.pubxml
  98.  
  99. # NuGet Packages Directory
  100. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  101. #packages/
  102.  
  103. # Windows Azure Build Output
  104. csx
  105. *.build.csdef
  106.  
  107. # Windows Store app package directory
  108. AppPackages/
  109.  
  110. # Others
  111. sql/
  112. *.Cache
  113. ClientBin/
  114. [Ss]tyle[Cc]op.*
  115. ~$*
  116. *~
  117. *.dbmdl
  118. *.[Pp]ublish.xml
  119. *.pfx
  120. *.publishsettings
  121.  
  122. # RIA/Silverlight projects
  123. Generated_Code/
  124.  
  125. # Backup & report files from converting an old project file to a newer
  126. # Visual Studio version. Backup files are not needed, because we have git ;-)
  127. _UpgradeReport_Files/
  128. Backup*/
  129. UpgradeLog*.XML
  130. UpgradeLog*.htm
  131.  
  132. # SQL Server files
  133. App_Data/*.mdf
  134. App_Data/*.ldf
  135.  
  136. # =========================
  137. # Windows detritus
  138. # =========================
  139.  
  140. # Windows image file caches
  141. Thumbs.db
  142. ehthumbs.db
  143.  
  144. # Folder config file
  145. Desktop.ini
  146.  
  147. # Recycle Bin used on file shares
  148. $RECYCLE.BIN/
  149.  
  150. # Mac crap
  151. .DS_Store

码源中国.gitignore忽略文件配置的更多相关文章

  1. 详解Github的.gitignore忽略文件+.gitignore不生效解决方案+生产配置大奉送

    详解Github的.gitignore忽略文件+.gitignore不生效解决方案+生产配置大奉送 Git中有一个非常重要的一个文件-----.gitignore 今天给大家免费送一个.gitigno ...

  2. 使用.gitignore忽略文件

    单个项目配置 在.git文件夹同目录下打开git bash,执行命令: touch .gitignore 生成“.gitignore”文件. 在”.gitignore” 文件里输入你要忽略的文件夹及其 ...

  3. Git中使用.gitignore忽略文件的推送

    转载自:https://blog.csdn.net/lk142500/article/details/82869018 windows下可以用另存为生成gitignore 文件 1 简介 在使用Git ...

  4. git中 gitignore 忽略文件操作

    通常,.gitignore文件被放置在存储库的根目录中.根目录也称为父目录和当前工作目录.根文件夹包含组成项目的所有文件和其他文件夹.也就是说,您可以将它放在存储库中的任何文件夹中.你甚至可以有多个. ...

  5. Git中.gitignore忽略文件(maven项目)

    使用情景: 有些时候,你必须把某些文件放到Git工作目录中,但又不能提交它们 解决方案: 在Git工作区的根目录下创建一个特殊的.gitignore文件,然后把要忽略的文件名填进去,Git就会自动忽略 ...

  6. gitignore 忽略文件夹

    上面问题,按理说只要在.gitignore文件中加上 /dockAni/Library/ 即可实现. 但是我这样做了以后却发现sourceTree中仍然会列出Library中的文件. 最后在这个帖子中 ...

  7. visual studio git 忽略文件配置模板

    ## Ignore Visual Studio temporary files, build results, and## files generated by popular Visual Stud ...

  8. gitignore 忽略文件

    *.project*.prefs*.classpath*.gitignore#ignore thumbnails created by windowsThumbs.db#Ignore files bu ...

  9. git 配置忽略文件(忽略UserInterfaceState.xcuserstate,Breakpoints_v2.xcbkptlist)

    ios 配置忽略文件.gitignore 文件 之前新建了一个项目,在使用git管理版本的时候没有配置忽略文件 .gitignore 文件,结果导致每次提交的时候都会出现UserInterfaceSt ...

随机推荐

  1. 【Jmeter】集合点Synchronizing Timer

    集合点: 简单来理解一下,虽然我们的“性能测试”理解为“多用户并发测试”,但真正的并发是不存在的,为了更真实的实现并发这感念,我们可以在需要压力的地方设置集合点,每到输入用户名和密码登录时,所有的虚拟 ...

  2. C++解析(6):函数参数的扩展

    0.目录 1.函数参数的默认值 2.函数默认参数的规则 3.函数占位参数 4.小结 1.函数参数的默认值 C++可以在函数声明时为参数提供一个默认值 当函数调用时没有提供参数的值,则使用默认值 参数的 ...

  3. P2891 [USACO07OPEN]吃饭Dining(最大流+拆点)

    题目描述 Cows are such finicky eaters. Each cow has a preference for certain foods and drinks, and she w ...

  4. Java操作excel(POI)

    由于在项目中使用了将excel数据导入到数据库.在这里分享一下. 这里使用的POI方式,支持两种格式(xls,xlsx) package com.entity; import java.io.File ...

  5. 应用程序的日志通过rsyslog推送到syslog服务器

    centos5系列系统自带为syslog1.4.1 centos6系列自带rsyslog版本为5.8.10 centos7系列自带rsyslog版本为7.4.7 目前最新版rsyslog为8.27.0 ...

  6. 【读书笔记】《HTTP权威指南》:Web Robots

    一.概述 Web机器人(Web Robots)是一种Web客户端的软件程序,它自动发起一系列的Web事务,从而在没有人工参与的状态下完成各种Web数据的搜集和处理. 典型的Web机器人有: 股票绘图机 ...

  7. 硬盘杀手!Windows版Redis疯狂占用C盘空间【转】

    [问题的原因] Windows版Redis启动后,会在C盘自动创建一个很大的文件,C:\Users\{你的用户名}\AppData\Local\Redis\RedisQFolk_****.dat 我们 ...

  8. 特征点检测学习_2(surf算法)

    依旧转载自作者:tornadomeet 出处:http://www.cnblogs.com/tornadomeet 特征点检测学习_2(surf算法) 在上篇博客特征点检测学习_1(sift算法) 中 ...

  9. 赤池信息量准则 ( Akaike information criterion)

    sklearn实战-乳腺癌细胞数据挖掘(博主亲自录制视频) https://study.163.com/course/introduction.htm?courseId=1005269003& ...

  10. PlantUML类图

    PlantUML类图   雨客 2016-04-08 11:38:03 浏览796 评论0 摘要: 类之间的关系 PlantUML用下面的符号来表示类之间的关系: 泛化,Generalization: ...