mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
12 lines
475 B
Bash
Executable File
12 lines
475 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Hide config file edits from Git changes
|
|
git update-index --no-skip-worktree config/app.php
|
|
git update-index --no-skip-worktree config/cache.php
|
|
git update-index --no-skip-worktree config/cms.php
|
|
git update-index --no-skip-worktree config/database.php
|
|
git update-index --no-skip-worktree config/mail.php
|
|
git update-index --no-skip-worktree config/queue.php
|
|
git update-index --no-skip-worktree config/session.php
|
|
git update-index --no-skip-worktree package.json
|