Add a script for installing git on arch

This commit is contained in:
Manuel Thalmann 2023-04-04 14:05:08 +02:00
parent 03cc63cd81
commit e1ad819a31

View file

@ -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;