在目录下创建.gitignore
内容:
log/
假设log目录下有:
log/
--1.log
--2.log
新建一个空文件:.gitkeep,文件名随意,这里只是为了说明。
执行命令:git add log/.gitkeep -f
这里如果不加-f会出现错误:
$ git add log/.gitkeep
The following paths are ignored by one of your .gitignore files:
log
Use -f if you really want to add them.
fatal: no files added
提交上传。