mirror of
https://github.com/vlang/v.git
synced 2025-09-16 16:02:29 +03:00
tools: gitignore the bin/ folder in new V projects (created by v init
) (#16493)
This commit is contained in:
parent
45854882b9
commit
aae63f5eb5
2 changed files with 6 additions and 0 deletions
|
@ -71,6 +71,9 @@ ${name}
|
||||||
*.dylib
|
*.dylib
|
||||||
*.dll
|
*.dll
|
||||||
|
|
||||||
|
# Ignore binary output folders
|
||||||
|
bin/
|
||||||
|
|
||||||
# Ignore common editor/system specific metadata
|
# Ignore common editor/system specific metadata
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea/
|
.idea/
|
||||||
|
|
|
@ -34,6 +34,9 @@ fn init_and_check() ! {
|
||||||
'*.dylib',
|
'*.dylib',
|
||||||
'*.dll',
|
'*.dll',
|
||||||
'',
|
'',
|
||||||
|
'# Ignore binary output folders',
|
||||||
|
'bin/',
|
||||||
|
'',
|
||||||
'# Ignore common editor/system specific metadata',
|
'# Ignore common editor/system specific metadata',
|
||||||
'.DS_Store',
|
'.DS_Store',
|
||||||
'.idea/',
|
'.idea/',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue