diff options
author | GiteaBot <teabot@gitea.io> | 2022-01-02 00:28:42 +0000 |
---|---|---|
committer | GiteaBot <teabot@gitea.io> | 2022-01-02 00:28:42 +0000 |
commit | 6a3611cc3d3b2e401464a855f4630f606f52eb67 (patch) | |
tree | 9e50a07c7a003b1e61af7fa877a4d563f8ac271f /options/gitignore | |
parent | 7db2f110adbd020e70c56497306cfbda8806d109 (diff) | |
download | gitea-6a3611cc3d3b2e401464a855f4630f606f52eb67.tar.gz gitea-6a3611cc3d3b2e401464a855f4630f606f52eb67.zip |
[skip ci] Updated licenses and gitignores
Diffstat (limited to 'options/gitignore')
-rw-r--r-- | options/gitignore/Jekyll | 3 | ||||
-rw-r--r-- | options/gitignore/Umbraco | 13 | ||||
-rw-r--r-- | options/gitignore/VisualStudioCode | 2 | ||||
-rw-r--r-- | options/gitignore/core | 38 |
4 files changed, 55 insertions, 1 deletions
diff --git a/options/gitignore/Jekyll b/options/gitignore/Jekyll index 2ca868298c..74a9223a45 100644 --- a/options/gitignore/Jekyll +++ b/options/gitignore/Jekyll @@ -2,3 +2,6 @@ _site/ .sass-cache/ .jekyll-cache/ .jekyll-metadata +# Ignore folders generated by Bundler +.bundle/ +vendor/ diff --git a/options/gitignore/Umbraco b/options/gitignore/Umbraco index cea9c890c3..86b91f300d 100644 --- a/options/gitignore/Umbraco +++ b/options/gitignore/Umbraco @@ -34,3 +34,16 @@ # Ignore the Models Builder models out of date flag **/ood.flag + +# NEW for version 9 .Net 5 (Core) +#ignore umbraco backoffice assest from wwwroot +**/wwwroot/umbraco/ + +#ignore umbraco data/views/settings +**/umbraco/ + +#include default location for modelsbuilder output +!**/umbraco/models + +#include default location for packages +!**/umbraco/Data/packages
\ No newline at end of file diff --git a/options/gitignore/VisualStudioCode b/options/gitignore/VisualStudioCode index 7478c2746e..45fce1d71c 100644 --- a/options/gitignore/VisualStudioCode +++ b/options/gitignore/VisualStudioCode @@ -1,4 +1,4 @@ -.vscode/ +.vscode/* !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json diff --git a/options/gitignore/core b/options/gitignore/core new file mode 100644 index 0000000000..c4d93934ad --- /dev/null +++ b/options/gitignore/core @@ -0,0 +1,38 @@ +*.swp +*.*~ +project.lock.json +.DS_Store +*.pyc +nupkg/ + +# Visual Studio Code +.vscode + +# Rider +.idea + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +build/ +bld/ +[Bb]in/ +[Oo]bj/ +[Oo]ut/ +msbuild.log +msbuild.err +msbuild.wrn + +# Visual Studio 2015 +.vs/ + |