From 4f7ad979b9c39e442b534656b330d07eaf0de978 Mon Sep 17 00:00:00 2001 From: Kacper Ksieski Date: Mon, 11 May 2020 20:44:59 -0400 Subject: [PATCH 1/2] add: create template for Alteryx Designer --- community/Alteryx.gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 community/Alteryx.gitignore diff --git a/community/Alteryx.gitignore b/community/Alteryx.gitignore new file mode 100644 index 00000000..a682e4b3 --- /dev/null +++ b/community/Alteryx.gitignore @@ -0,0 +1,29 @@ +# 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 From 110e40ad2a1b64c46fd690fcce2b20b16fe53f7f Mon Sep 17 00:00:00 2001 From: kacper ksieski Date: Thu, 22 Apr 2021 10:00:03 -0400 Subject: [PATCH 2/2] fix: add stars --- community/Alteryx.gitignore | 53 ++++++++++++++++++++++++------------- 1 file changed, 34 insertions(+), 19 deletions(-) diff --git a/community/Alteryx.gitignore b/community/Alteryx.gitignore index a682e4b3..a8e1341f 100644 --- a/community/Alteryx.gitignore +++ b/community/Alteryx.gitignore @@ -3,27 +3,42 @@ # website: https://help.alteryx.com/current/designer/alteryx-file-types # Alteryx Data Files -.yxdb -.cydb -.cyidx -.rptx -.vvf -.aws +*.yxdb +*.cydb +*.cyidx +*.rptx +*.vvf +*.aws # Alteryx Special Files -.yxwv -.yxft -.yxbe -.bak -.pcxml -.log -.bin -.yxlang +*.yxwv +*.yxft +*.yxbe +*.bak +*.pcxml +*.log +*.bin +*.yxlang CASS.ini # Alteryx License Files -.yxlc -.slc -.cylc -.alc -.gzlc +*.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