16 lines
284 B
Bash
Executable file
16 lines
284 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
yay --noconfirm -Syu \
|
|
git \
|
|
git-lfs \
|
|
gitflow-avh \
|
|
gitflow-bashcompletion-avh \
|
|
gitflow-fishcompletion-avh \
|
|
gitflow-zshcompletion-avh \
|
|
;
|
|
|
|
. "../../../Common/Config/git/install.sh";
|
|
|
|
popd > /dev/null;
|