Add a script for installing git flow
This commit is contained in:
parent
cabaa0c34b
commit
f3ddacce6f
2 changed files with 5 additions and 0 deletions
|
@ -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";
|
||||
|
|
4
scripts/Software/git-flow/install.sh
Executable file
4
scripts/Software/git-flow/install.sh
Executable 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
|
Loading…
Reference in a new issue