aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Johnson <wirecat@github.com>2024-05-28 14:46:45 -0700
committerGitHub <noreply@github.com>2024-05-28 14:46:45 -0700
commitf8a96208abceff57dec62fe6d80fb29cc15c6c20 (patch)
tree5e808437de8d94844c957128e254de4047a07f6c
parent7b22f8ab6c85b4ef1469d72a8ba96462e2a44853 (diff)
parent110e40ad2a1b64c46fd690fcce2b20b16fe53f7f (diff)
downloadgitignore-f8a96208abceff57dec62fe6d80fb29cc15c6c20.tar.gz
gitignore-f8a96208abceff57dec62fe6d80fb29cc15c6c20.zip
Merge pull request #3405 from kksieski/feat_alteryx_template
add: create template for Alteryx Designer
-rw-r--r--community/Alteryx.gitignore44
1 files changed, 44 insertions, 0 deletions
diff --git a/community/Alteryx.gitignore b/community/Alteryx.gitignore
new file mode 100644
index 00000000..a8e1341f
--- /dev/null
+++ b/community/Alteryx.gitignore
@@ -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 \ No newline at end of file