如何在Git项目中添加空目录
这篇文章(5638441326ad9cd2130a33ec)是从 Teambition 迁移过来的
在要添加的目录下新建 .gitignore 文件,文件中添加以下信息:
# Ignore everything in this directory
*
# Except this file
!.gitignore更新 20160429:这里可以找到针对各种开发语言的 .gitignore 模板:github.com/github/gitignore
So'Blog
知识就像空气,学习如同呼吸。
这篇文章(5638441326ad9cd2130a33ec)是从 Teambition 迁移过来的
在要添加的目录下新建 .gitignore 文件,文件中添加以下信息:
# Ignore everything in this directory
*
# Except this file
!.gitignore更新 20160429:这里可以找到针对各种开发语言的 .gitignore 模板:github.com/github/gitignore