Split git-flow software and config

This commit is contained in:
Manuel Thalmann 2023-04-02 03:46:29 +02:00
parent 76665f52c2
commit 2c6f232f52
3 changed files with 4 additions and 2 deletions

View file

@ -31,6 +31,7 @@ fi;
# Git Config # Git Config
source "../git/setup/install.sh"; source "../git/setup/install.sh";
source "../git/flow/install.sh";
# Troll Stuff # Troll Stuff
source "../git/git-auf-deutsch/install.sh"; source "../git/git-auf-deutsch/install.sh";

View file

@ -0,0 +1,3 @@
#!/bin/bash
git flow config set --global master main
git flow config set --global develop dev

View file

@ -1,4 +1,2 @@
#!/bin/bash #!/bin/bash
sudo apt install git-flow sudo apt install git-flow
git flow config set --global master main
git flow config set --global develop dev