-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ISSUE-32 #33
ISSUE-32 #33
Conversation
.gitignore
Outdated
@@ -1,3 +1,4 @@ | |||
.idea |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's generally better to keep IDE (and OS)-specific files out of the project's concerns, otherwise you also end up with entries like .DS_Store
and nbproject/*
added to the repository as people come along with new tools or operating systems.
Personally I use a global ~/.gitignore_global
containing just .idea
and .DS_Store
, which then means those two files are never added to any project I work on. More info here: https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nealio82 Thanks for ~/.gitignore_global
concept information. I was revert that change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
The inspection completed: No new issues |
Thank you for this. |
@nealio82 @gavinlove hello again! |
resolve #32
cronos:dump
andcronos:replace
in the service container..idea
into.gitignore
.