Silence unwanted output
This commit is contained in:
parent
0253b3c9e6
commit
516fa441ca
5 changed files with 8 additions and 8 deletions
scripts/Common/Config/git
|
@ -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;
|
||||
|
|
|
@ -29,7 +29,7 @@ git config --global alias.markierig tag;
|
|||
|
||||
source ~/.bashrc;
|
||||
|
||||
if ! alias totsch
|
||||
if ! alias totsch > /dev/null 2>&1
|
||||
then
|
||||
{
|
||||
echo "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue