-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup gitignore and git attibute. Also setup base got github folder (…
…will add workflow when setting up sampleapps)
- Loading branch information
1 parent
ec8147f
commit 6076901
Showing
4 changed files
with
67 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
* text=auto | ||
|
||
# Language | ||
*.go -text diff=golang | ||
|
||
# Document | ||
*.md text diff=markdown | ||
*.tex text diff=tex | ||
*.sql linguist-detectable=true | ||
*.sql linguist-language=sql | ||
|
||
# Scripts | ||
*.bash text eol=lf | ||
*.fish text eol=lf | ||
*.sh text eol=lf | ||
*.zsh text eol=lf | ||
|
||
# Serialisation | ||
*.json text | ||
*.yaml text | ||
*.yml text | ||
|
||
# | ||
# Exclude files from exporting | ||
# | ||
|
||
go.sum linguist-generated=true | ||
vendor/modules.txt linguist-generated=true | ||
|
||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.gitkeep export-ignore |
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,3 @@ | ||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence. | ||
* @anthonycorbacho |
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,4 @@ | ||
## Description | ||
|
||
|
||
## Other Information |
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,28 @@ | ||
## IDE folders | ||
.idea/ | ||
.vscode | ||
*~ | ||
\#*\# | ||
.\#* | ||
|
||
### VS Code | ||
__debug_bin | ||
|
||
## OSX file | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
._* | ||
|
||
## Folders | ||
_obj | ||
_test | ||
|
||
|
||
### Other | ||
*.exe | ||
*.test | ||
*.prof | ||
|
||
## Secrets | ||
*secret.yaml |