-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
37 lines (34 loc) · 830 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Template from https://rtldesignlabs.com/blog/005-setting-up-a-gitignore-file-for-vivado-projects
# Ignore everything
*
# Whitelist all subdirectories
!*/
# Don't ignore the block design and block design hdl wrapper files
!/bd/**/*.*
# Don't ignore the constraint files
!/constraints/**/*.*
# Don't ignore the synthesis files
!/hdl/**/*.*
# Don't ignore the IP defintion files
!/ip/**/*.*
# Don't ignore the output files
!/output/**/*.*
# Don't ignore the vivado project files
!/vivado/*.xpr
# Don't ignore the simulation files
!/sim/**/*.*
# Don't ingore Scripts
!/scripts/**/*.*
# Don't ignore Doc
!/doc/**/*.*
# Don't ignore .vscode settings
!/.vscode/**/*.*
# Don't ignore this file
!.gitignore
# Don't ignore license
!LICENSE
# Don't ingnore markdown or text files
!*.md
# Miscellaneus
**/hdl/xilinx/**
**/mdct_jpeg/**