Silence unwanted output

This commit is contained in:
Manuel Thalmann 2024-03-09 21:45:50 +01:00
parent 0253b3c9e6
commit 516fa441ca
5 changed files with 8 additions and 8 deletions
scripts/Common/Config/git
flow
git-auf-deutsch

View file

@ -3,9 +3,9 @@ contextRoot="$(mktemp -d)";
pushd "$contextRoot" > /dev/null;
git init;
git commit --allow-empty -m "Initial commit" > /dev/null;
git branch master || true;
git branch main || true;
git branch dev || true;
git branch master || true > /dev/null 2>&1;
git branch main || true > /dev/null 2>&1;
git branch dev || true > /dev/null 2>&1;
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;

View file

@ -29,7 +29,7 @@ git config --global alias.markierig tag;
source ~/.bashrc;
if ! alias totsch
if ! alias totsch > /dev/null 2>&1
then
{
echo "";