Skip to content

Commit 2bfae56

Browse files
committed
add gitignore
0 parents  commit 2bfae56

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# First exclude any directories or files
2+
*
3+
# Then include all directories
4+
!*/
5+
# Include .gitignore
6+
!.gitignore
7+
8+
# Whitelist files to track
9+
10+
# Xilinx Vivado Project
11+
!*/*.xpr
12+
13+
# Verilog Source
14+
!*/*.v
15+
16+
# Constraints
17+
!*/*.xdc
18+
19+
# IP core
20+
!*.xci
21+
!*.coe
22+
23+
# Bitstream
24+
!*.bit
25+
26+
# Documentation
27+
!*.md
28+
!docs/**

0 commit comments

Comments
 (0)