mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +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
@ -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…
Reference in New Issue
Block a user