ArtiVC
GitHub Blogs Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage
Edit page

Ignore File

Just like git, you can put a .avcignore file at the root of workspace to define the excluding list. The rule is the same as .gitignore. For more details, please check the pattern format in the git document.

Here is the example:

# Ignore files
test
path/to/my/file
.DS_Store

# Ignore folders. Use a forward slash at the end
build/
path/to/my/folder/
/build/

# Ignore all file with extension '.py'
*.py