From 40972a6a29617f1c35eb6e60d500bf7f63d624bc Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sun, 2 Apr 2023 03:46:29 +0200 Subject: [PATCH] Split `git-flow` software and config --- scripts/Common/Config/UserProfile/personal.sh | 1 + scripts/Common/Config/git/flow/install.sh | 3 +++ scripts/Debian/Software/git/flow.sh | 2 -- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100755 scripts/Common/Config/git/flow/install.sh diff --git a/scripts/Common/Config/UserProfile/personal.sh b/scripts/Common/Config/UserProfile/personal.sh index d2549916d..9a0857713 100755 --- a/scripts/Common/Config/UserProfile/personal.sh +++ b/scripts/Common/Config/UserProfile/personal.sh @@ -31,6 +31,7 @@ fi; # Git Config source "../git/setup/install.sh"; +source "../git/flow/install.sh"; # Troll Stuff source "../git/git-auf-deutsch/install.sh"; diff --git a/scripts/Common/Config/git/flow/install.sh b/scripts/Common/Config/git/flow/install.sh new file mode 100755 index 000000000..c971df75e --- /dev/null +++ b/scripts/Common/Config/git/flow/install.sh @@ -0,0 +1,3 @@ +#!/bin/bash +git flow config set --global master main +git flow config set --global develop dev diff --git a/scripts/Debian/Software/git/flow.sh b/scripts/Debian/Software/git/flow.sh index 59fac865a..c38a1cfa5 100755 --- a/scripts/Debian/Software/git/flow.sh +++ b/scripts/Debian/Software/git/flow.sh @@ -1,4 +1,2 @@ #!/bin/bash sudo apt install git-flow -git flow config set --global master main -git flow config set --global develop dev