Fix gitflow initialization

This commit is contained in:
Manuel Thalmann 2023-04-04 14:04:46 +02:00
parent 19a62bf76a
commit ff87da77b7

View file

@ -2,6 +2,7 @@
contextRoot="$(mktemp -d)";
pushd "$contextRoot" > /dev/null;
git init;
git commit --allow-empty -m "Initial commit";
git branch main;
git branch dev;
yes "" | git flow init;