1
0
mirror of https://github.com/github/gitignore synced 2024-11-26 05:34:21 +01:00

fix: add stars

This commit is contained in:
kacper ksieski 2021-04-22 10:00:03 -04:00
parent 4f7ad979b9
commit 110e40ad2a

View File

@ -3,27 +3,42 @@
# website: https://help.alteryx.com/current/designer/alteryx-file-types # website: https://help.alteryx.com/current/designer/alteryx-file-types
# Alteryx Data Files # Alteryx Data Files
.yxdb *.yxdb
.cydb *.cydb
.cyidx *.cyidx
.rptx *.rptx
.vvf *.vvf
.aws *.aws
# Alteryx Special Files # Alteryx Special Files
.yxwv *.yxwv
.yxft *.yxft
.yxbe *.yxbe
.bak *.bak
.pcxml *.pcxml
.log *.log
.bin *.bin
.yxlang *.yxlang
CASS.ini CASS.ini
# Alteryx License Files # Alteryx License Files
.yxlc *.yxlc
.slc *.slc
.cylc *.cylc
.alc *.alc
.gzlc *.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