mirror of https://github.com/go-gitea/gitea
parent
9b05bfb173
commit
c6854202be
@ -0,0 +1,44 @@ |
|||||||
|
# gitignore template for Alteryx Designer |
||||||
|
# website: https://www.alteryx.com/ |
||||||
|
# website: https://help.alteryx.com/current/designer/alteryx-file-types |
||||||
|
|
||||||
|
# Alteryx Data Files |
||||||
|
*.yxdb |
||||||
|
*.cydb |
||||||
|
*.cyidx |
||||||
|
*.rptx |
||||||
|
*.vvf |
||||||
|
*.aws |
||||||
|
|
||||||
|
# Alteryx Special Files |
||||||
|
*.yxwv |
||||||
|
*.yxft |
||||||
|
*.yxbe |
||||||
|
*.bak |
||||||
|
*.pcxml |
||||||
|
*.log |
||||||
|
*.bin |
||||||
|
*.yxlang |
||||||
|
CASS.ini |
||||||
|
|
||||||
|
# Alteryx License Files |
||||||
|
*.yxlc |
||||||
|
*.slc |
||||||
|
*.cylc |
||||||
|
*.alc |
||||||
|
*.gzlc |
||||||
|
|
||||||
|
## gitignore reference sites |
||||||
|
# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files |
||||||
|
# https://git-scm.com/docs/gitignore |
||||||
|
# https://help.github.com/articles/ignoring-files/ |
||||||
|
|
||||||
|
## Useful knowledge from stackoverflow |
||||||
|
# Even if you haven't tracked the files so far, git seems to be able to "know" about them even after you add them to .gitignore. |
||||||
|
# WARNING: First commit your current changes, or you will lose them. |
||||||
|
# Then run the following commands from the top folder of your git repo: |
||||||
|
# git rm -r --cached . |
||||||
|
# git add . |
||||||
|
# git commit -m "fixed untracked files" |
||||||
|
|
||||||
|
# author: Kacper Ksieski |
@ -0,0 +1,11 @@ |
|||||||
|
# generated files |
||||||
|
target/ |
||||||
|
generated/ |
||||||
|
|
||||||
|
# dependencies |
||||||
|
Dependencies.toml |
||||||
|
|
||||||
|
# config files |
||||||
|
Config.toml |
||||||
|
# the config files used for testing, Uncomment the following line if you want to commit the test config files |
||||||
|
#!**/tests/Config.toml |
@ -0,0 +1,18 @@ |
|||||||
|
# This .gitignore is appropriate for repositories deployed to GitHub Pages and using |
||||||
|
# a Gemfile as specified at https://github.com/github/pages-gem#conventional |
||||||
|
|
||||||
|
# Basic Jekyll gitignores (synchronize to Jekyll.gitignore) |
||||||
|
_site/ |
||||||
|
.sass-cache/ |
||||||
|
.jekyll-cache/ |
||||||
|
.jekyll-metadata |
||||||
|
|
||||||
|
# Additional Ruby/bundler ignore for when you run: bundle install |
||||||
|
/vendor |
||||||
|
|
||||||
|
# Specific ignore for GitHub Pages |
||||||
|
# GitHub Pages will always use its own deployed version of pages-gem |
||||||
|
# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is |
||||||
|
# counterproductive to check this file into the repository. |
||||||
|
# Details at https://github.com/github/pages-gem/issues/768 |
||||||
|
Gemfile.lock |
@ -0,0 +1,11 @@ |
|||||||
|
# gitignore template for RPA development using UiPath Studio |
||||||
|
# website: https://www.uipath.com/product/studio |
||||||
|
# |
||||||
|
# Recommended: n/a |
||||||
|
|
||||||
|
# Ignore folders that could cause issues if accidentally tracked |
||||||
|
**/.local/** |
||||||
|
**/.settings/** |
||||||
|
**/.objects/** |
||||||
|
**/.tmh/** |
||||||
|
**/*.log |
Loading…
Reference in new issue