]> source.dussan.org Git - gitignore.git/commitdiff
fix: add stars 3405/head
authorkacper ksieski <kacperksieski@protonmail.com>
Thu, 22 Apr 2021 14:00:03 +0000 (10:00 -0400)
committerkacper ksieski <kacperksieski@protonmail.com>
Thu, 22 Apr 2021 14:00:03 +0000 (10:00 -0400)
community/Alteryx.gitignore

index a682e4b35f6f883546d405c5268376b3d026db22..a8e1341ffe4fb816ad803d0710562ddf5a62c83c 100644 (file)
@@ -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