From 824d103ea253222b7156ad6ed0717602670c115a Mon Sep 17 00:00:00 2001 From: Dennis Buchhorn Date: Tue, 26 Oct 2021 08:01:22 +0200 Subject: [PATCH] feat: add some files to gitignore --- scripts/git_wrapper.tcl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/git_wrapper.tcl b/scripts/git_wrapper.tcl index f74fa3d..b3ee5e0 100644 --- a/scripts/git_wrapper.tcl +++ b/scripts/git_wrapper.tcl @@ -41,6 +41,9 @@ namespace eval ::git_wrapper { # Generate gitignore file set file [open ".gitignore" "w"] puts $file "vivado_project/*" + puts $file ".Xil/*" + puts $file "*.str" + puts $file "*.log" close $file # Initialize the repo