发布于 1年前

Git添加空目录到仓库

Git是不允许添加空目录到仓库的。一般做法是在空目录里添加一个文件。

通常会添加的文件如下:

1、添加.gitignore,内容如下:

# Ignore everything in this directory
*
# Except this file
!.gitignore

这目的不让git忽略此文件

2、添加.gitkeep

空文件.gitkeep,顾名思义就是让git保留

3、添加README

git
©2020 edoou.com   京ICP备16001874号-3