PortValhalla/scripts/Arch/Software/git/main.fish

19 lines
422 B
Fish
Raw Permalink Normal View History

2024-07-15 10:10:06 +00:00
#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
inherit "$dir/../../../Common/Software/git/main.fish"
2024-07-15 10:10:06 +00:00
2024-09-13 12:47:07 +00:00
function installSW
2024-07-15 10:10:06 +00:00
yayinst \
git \
git-lfs \
gitflow-avh \
gitflow-bashcompletion-avh \
gitflow-fishcompletion-avh \
gitflow-zshcompletion-avh
2024-09-13 12:47:07 +00:00
end
2024-07-15 10:10:06 +00:00
runInstaller $argv
end