-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged in feature/prepare_git_ignore (pull request #19)
KBP-135 #time 25m - Prepare ignored files, folders etc. for git via gitignore file Approved-by: Fatih Avsan <[email protected]> Approved-by: Eşref VİDUŞLU <[email protected]>
- Loading branch information
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
# | ||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile '~/.gitignore_global' | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
|
||
# Ignore the default SQLite database. | ||
/db/*.sqlite3 | ||
/db/*.sqlite3-journal | ||
|
||
# Ignore log | ||
/log/*.log | ||
|
||
/tmp | ||
!.keep | ||
*.swp | ||
.env | ||
bin/stubs | ||
/.env.* | ||
/.env.local | ||
public/system | ||
vendor/bundler_gems | ||
|
||
# Ignore ide and text editor | ||
.idea | ||
.idea/ | ||
.idea/**/* | ||
/dump.rdb | ||
|
||
# Ignore pow files | ||
.powrc | ||
|
||
# Ignore mac files | ||
.DS_Store | ||
|
||
# Ignore config files | ||
config/settings.local.yml | ||
config/settings/*.local.yml | ||
config/environments/*.local.yml | ||
.secret |