From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp57.i.mail.ru (smtp57.i.mail.ru [217.69.128.37]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 1F5F1469719 for ; Fri, 25 Sep 2020 12:24:55 +0300 (MSK) Date: Fri, 25 Sep 2020 12:24:52 +0300 From: "Alexander V. Tikhonov" Message-ID: <20200925092452.GA15616@hpalx> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Tarantool-patches] [PATCH 2/2] gitignore: ignore directories made on running jepsen tests List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: sergeyb@tarantool.org Cc: tarantool-patches@dev.tarantool.org Hi Sergey, thanks for the patch. Patch only for git side, LGTM. On Thu, Sep 24, 2020 at 03:50:24PM +0300, sergeyb@tarantool.org wrote: > From: Sergey Bronnikov > > On running Jepsen tests created directory with Terraform state and directory > with Jepsen tests source code in a build directory. Everything is ok on using > out of source build in a separate directory, but with building in a project > root directory these directories appears in `git status` output. This patch add > ignores for these directories. > --- > .gitignore | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/.gitignore b/.gitignore > index c6e261e18..d5531419d 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -144,6 +144,10 @@ sftpscript.txt > *.md5sum > extra/deploy_key > compile_commands.json > +jepsen-tests-prefix > +.terraform > +terraform.tfstate > +terraform.tfstate.backup > > # autogenerated files > src/box/sql/keywordhash.h > -- > 2.25.1 >