添加VS Code工作区设置文件,包含Git和文件排除配置 更新config.php中的数据库和SMTP密码配置 删除旧的config.php.bak备份文件
22 lines
548 B
JSON
22 lines
548 B
JSON
{
|
|
"git.ignoreLimitWarning": true,
|
|
"git.enableSmartCommit": true,
|
|
"git.autofetch": true,
|
|
"git.confirmSync": false,
|
|
"git.path": "git",
|
|
"git.terminalAuthentication": true,
|
|
"git.ignoreMissingGitWarning": false,
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"config.php": true
|
|
},
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
"config.php": true
|
|
}
|
|
} |