Skip to content

Commit 110e40a

Browse files
committed
fix: add stars
1 parent 4f7ad97 commit 110e40a

File tree

1 file changed

+34
-19
lines changed

1 file changed

+34
-19
lines changed

community/Alteryx.gitignore

Lines changed: 34 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,42 @@
33
# website: https://help.alteryx.com/current/designer/alteryx-file-types
44

55
# Alteryx Data Files
6-
.yxdb
7-
.cydb
8-
.cyidx
9-
.rptx
10-
.vvf
11-
.aws
6+
*.yxdb
7+
*.cydb
8+
*.cyidx
9+
*.rptx
10+
*.vvf
11+
*.aws
1212

1313
# Alteryx Special Files
14-
.yxwv
15-
.yxft
16-
.yxbe
17-
.bak
18-
.pcxml
19-
.log
20-
.bin
21-
.yxlang
14+
*.yxwv
15+
*.yxft
16+
*.yxbe
17+
*.bak
18+
*.pcxml
19+
*.log
20+
*.bin
21+
*.yxlang
2222
CASS.ini
2323

2424
# Alteryx License Files
25-
.yxlc
26-
.slc
27-
.cylc
28-
.alc
29-
.gzlc
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

0 commit comments

Comments
 (0)