From 353536842467d53d80373845d56b4ce70dc64a13 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Tue, 16 Jul 2024 14:17:38 -0400 Subject: [PATCH] Update .gitignore to ignore specific files rather than everything not manually added --- .gitignore | 5 ++++- commit.sh | 6 ++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 72e8ffc..89512f9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ -* +mutn +mutn.exe +libmuttonserver +libmuttonserver.exe diff --git a/commit.sh b/commit.sh index 64aa92e..64a3667 100755 --- a/commit.sh +++ b/commit.sh @@ -1,6 +1,4 @@ #!/bin/sh -gofmt -l -w -s ./src/cli/*.go -gofmt -l -w -s ./src/backend/*.go -git add -f completions docs src wiki .gitignore commit.sh go.mod go.sum LICENSE mutn.go libmuttonserver.go README.md -git commit -m "$1" +gofmt -l -w -s ./src/cli/*.go ./src/backend/*.go ./mutn.go ./libmuttonserver.go +git commit -am "$1" git push