This commit is contained in:
simono41 2018-02-17 16:55:56 +01:00
parent d683082ac7
commit 9d74dfb77e
2 changed files with 4 additions and 1 deletions

0
SimpleHTTPServerWithUpload.py Normal file → Executable file
View file

5
sgit
View file

@ -11,6 +11,9 @@ echo "Bitte email und commit angeben!!!"
exit 1
fi
push="${3}"
[[ -z "${push}" ]] && push="origin"
git config --global core.editor "nano"
git config --global user.email "${1}"
git config --global user.name "${1}"
@ -20,5 +23,5 @@ git add --all
git commit --all -m "${2}"
git pull
git show
git push "${3}"
git push "${push}"
git status