You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
alike .gitignore file there should be a .torusignore file. This file should be generated when the project is initialized. Every command must check if the project hasnt been initialized and initialize it automatically.
to parse the torus ignore use the following:
var gitignore = fs.readFileSync('.torusignore', 'utf8')
var ignorePaths = {}
for(let path of gitignore.split('\n')) if(path.trim().length > 1) ignorePaths[path.trim()] = true
alike .gitignore file there should be a .torusignore file. This file should be generated when the project is initialized. Every command must check if the project hasnt been initialized and initialize it automatically.
to parse the torus ignore use the following:
by default include in torusignore:
The text was updated successfully, but these errors were encountered: