From 48808975c6446552460e7a6e7a25d586f452059d Mon Sep 17 00:00:00 2001 From: "Scott C. MacCallum" Date: Fri, 9 Dec 2022 07:59:54 -0500 Subject: [PATCH] Adding file --- compare-repo.ksh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 compare-repo.ksh diff --git a/compare-repo.ksh b/compare-repo.ksh new file mode 100755 index 0000000..4aa0281 --- /dev/null +++ b/compare-repo.ksh @@ -0,0 +1,25 @@ +#!/bin/ksh + +# compare-repo.sh +# This script compares the local and remote repository +# Copyright (C) 2020 Scott C. MacCallum +# scm@sdf.org + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. + +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +git status | less + +git diff + +exit 0