Add a script for installing git on arch
This commit is contained in:
parent
58892d1de2
commit
9c61b608c6
1 changed files with 13 additions and 0 deletions
13
scripts/Arch/Software/git/install.sh
Executable file
13
scripts/Arch/Software/git/install.sh
Executable 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;
|
Loading…
Reference in a new issue