Ignore unnecessary exit codes

This commit is contained in:
Manuel Thalmann 2023-04-07 02:09:49 +02:00
parent ea6a7cb53d
commit d21150ea9f
3 changed files with 9 additions and 8 deletions
scripts/Common/Config/git/flow

View file

@ -3,8 +3,9 @@ contextRoot="$(mktemp -d)";
pushd "$contextRoot" > /dev/null;
git init;
git commit --allow-empty -m "Initial commit" > /dev/null;
git branch main;
git branch dev;
git branch master || true;
git branch main || true;
git branch dev || true;
yes "" | git flow init > /dev/null 2>&1;
git flow config set --global master main > /dev/null;
git flow config set --global develop dev > /dev/null;