File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed
Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ # gitignore template for Alteryx Designer
2+ # website: https://www.alteryx.com/
3+ # website: https://help.alteryx.com/current/designer/alteryx-file-types
4+
5+ # Alteryx Data Files
6+ * .yxdb
7+ * .cydb
8+ * .cyidx
9+ * .rptx
10+ * .vvf
11+ * .aws
12+
13+ # Alteryx Special Files
14+ * .yxwv
15+ * .yxft
16+ * .yxbe
17+ * .bak
18+ * .pcxml
19+ * .log
20+ * .bin
21+ * .yxlang
22+ CASS.ini
23+
24+ # Alteryx License Files
25+ * .yxlc
26+ * .slc
27+ * .cylc
28+ * .alc
29+ * .gzlc
30+
31+ # # gitignore reference sites
32+ # https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files
33+ # https://git-scm.com/docs/gitignore
34+ # https://help.github.com/articles/ignoring-files/
35+
36+ # # Useful knowledge from stackoverflow
37+ # 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.
38+ # WARNING: First commit your current changes, or you will lose them.
39+ # Then run the following commands from the top folder of your git repo:
40+ # git rm -r --cached .
41+ # git add .
42+ # git commit -m "fixed untracked files"
43+
44+ # author: Kacper Ksieski
You can’t perform that action at this time.
0 commit comments