Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 5f29a632 authored by dleurs's avatar dleurs
Browse files

Added numberly remote

parent 4024ebd7
No related branches found
No related tags found
No related merge requests found
......@@ -20,18 +20,16 @@ else
git commit -m $commitMessage;
if [ $# -eq 1 ];
then
echo "\ngit push origin master;\n";
git push origin master;
echo "\ngit push froggit master;\n";
git push froggit master;
branch="master";
else
if [ "$2" = "origin" ];
then
echo "\ngit push origin master;\n";
git push origin master;
fi
branch=$2
fi
echo "\ngit push origin $branch;\n";
git push origin $branch;
echo "\ngit push froggit $branch;\n";
git push froggit $branch;
echo "\ngit push numberly $branch;\n";
git push numberly $branch;
fi
fi
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment