Alteryx.gitignore 984 B

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