From 9c61b608c6642cde459038f45a47ef0a74b7e08e Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 4 Apr 2023 14:05:08 +0200 Subject: [PATCH] Add a script for installing git on arch --- scripts/Arch/Software/git/install.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 scripts/Arch/Software/git/install.sh diff --git a/scripts/Arch/Software/git/install.sh b/scripts/Arch/Software/git/install.sh new file mode 100755 index 00000000..0606829b --- /dev/null +++ b/scripts/Arch/Software/git/install.sh @@ -0,0 +1,13 @@ +#!/bin/bash +pushd "${BASH_SOURCE%/*}" > /dev/null; + +yay --noconfirm -Syu \ + git \ + gitflow-avh \ + gitflow-bashcompletion-avh \ + gitflow-fishcompletion-avh \ + gitflow-zshcompletion-avh; + +. "../../../Common/Config/git/install.sh"; + +popd > /dev/null;