Add a script for installing git flow

This commit is contained in:
Manuel Thalmann 2023-03-05 01:18:13 +01:00
parent 8b637483c5
commit 27bed79765
2 changed files with 5 additions and 0 deletions

View file

@ -17,6 +17,7 @@ source "$softwareRoot/Brave/install-extensions.sh";
source "$softwareRoot/Google Chrome/install.sh";
# Install further software
source "$softwareRoot/git-flow/install.sh";
source "$softwareRoot/logo-ls/install.sh";
source "$softwareRoot/VSCodium/install.sh";
source "$softwareRoot/Visual Studio Code/install.sh";

View file

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