为什么在我提交到服务器的其他文件时上传laravel.log文件

时间:2018-07-17 09:39:21

标签: git laravel

我已经在服务器上设置了GIT。当我提交内容时,将automaticRestart从本地自动上传到服务器。我该怎么办?

true文件

laravel.log

enter image description here

2 个答案:

答案 0 :(得分:2)

也许一个例子会有所帮助:

git rm --cached storage/logs/laravel.log
git commit -m "deleted laravel.log"

commit之后,请使用git status命令检查您的git状态。如果您看到deleted storage/logs/laravel.log句子在起作用。

答案 1 :(得分:1)

.gitignore目录中创建一个storage/logs/文件,其内容如下:

*
!.gitignore