上传CodeIgniter 4项目到GitHub时,我应该包含或排除哪些文件?

7xllpg7q  于 2022-12-07  发布在  Git
关注(0)|答案(1)|浏览(93)

Codeigniter 4在我的根目录下创建了一个.gitignore文件,但我不知道这个文件是否包含了我不应该在GitHub上共享的所有内容。它会自动排除所有存储个人信息的文件吗?
例如,我听说CodeIgniter制作了一个文件,它存储了所有的错误日志,我不知道该上传什么文件。
因此,我只想使用addcommitpush命令,.gitignore将自动忽略存储个人信息的文件,对吗?
(我已经使用composer安装了Codeigniter 4,但没有安装其他任何东西。)

56lgkhnf

56lgkhnf1#

CodeIgniter 4 .gitignore file

#-------------------------
# Operating Specific Junk Files
#-------------------------

# OS X
.DS_Store
.AppleDouble
.LSOverride

# OS X Thumbnails
._*

# Windows image file caches
Thumbs.db
ehthumbs.db
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk

# Linux
*~

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

#-------------------------
# Environment Files
#-------------------------
# These should never be under version control,
# as it poses a security risk.
.env
.vagrant
Vagrantfile

#-------------------------
# Temporary Files
#-------------------------
writable/cache/*
!writable/cache/index.html

writable/logs/*
!writable/logs/index.html

writable/session/*
!writable/session/index.html

writable/uploads/*
!writable/uploads/index.html

writable/debugbar/*
!writable/debugbar/.gitkeep

writable/**/*.db
writable/**/*.sqlite

php_errors.log

#-------------------------
# User Guide Temp Files
#-------------------------
user_guide_src/build/*

#-------------------------
# Test Files
#-------------------------
tests/coverage*

# Don't save phpunit under version control.
phpunit

#-------------------------
# Composer
#-------------------------
vendor/
composer.lock

#-------------------------
# IDE / Development Files
#-------------------------

# Modules Testing
_modules/*

# phpenv local config
.php-version

# Jetbrains editors (PHPStorm, etc)
.idea/
*.iml

# Netbeans
nbproject/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
.nb-gradle/

# Sublime Text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
*.sublime-workspace
*.sublime-project
.phpintel
/api/

# Visual Studio Code
.vscode/

/results/
/phpunit*.xml
/.phpunit.*.cache

/.php-cs-fixer.php

上传项目到GitHub时,我应该包含或排除哪些文件?
上面的.gitignore文件应该处理一般用例。
是否自动排除所有存储个人信息的文件?
如果您的个人信息存储在项目根目录下的.env文件中,则使用上述.gitignore文件是安全的。如果您在其他配置文件中定义了个人详细信息,则应手动将该文件添加到.gitignore文件中。
例如,我听说CodeIgniter制作了一个文件,它存储了所有的错误日志,我不知道该上传什么文件。我的第二个问题是,这个文件是什么?
错误日志基于当前日期存储在writable/logs下,即:writable/logs/log-2022-04-20.log .
上述.gitignore文件中已经存在的 * 以下 * 声明负责在提交和推送源代码时忽略所有日志文件。

# ...

writable/logs/*
!writable/logs/index.html

# ...

资源:

  • .gitignore档案病毒码格式。

相关问题