new_git-commands

This commit is contained in:
simono41 2020-03-20 14:37:57 +01:00
parent 8048acd4eb
commit 2d3d61836c

6
sgit
View file

@ -28,13 +28,13 @@ git status
git add --all git add --all
git commit --all -m "${2}" git commit --all -m "${2}"
git show git show
if ! GIT_SSH_COMMAND="ssh -oPort=1022" git pull "${push}" "${branch}"; then if ! git pull "${push}" "${branch}"; then
echo "Konnte keine neuen Daten vom Server hollen!!!" echo "Konnte keine neuen Daten vom Server hollen!!!"
fi fi
if ! GIT_SSH_COMMAND="ssh -oPort=1022" git push --set-upstream "${push}" "${branch}"; then if ! git push --set-upstream "${push}" "${branch}"; then
echo "Konnte keine neuen Daten zum Server pushen!!!" echo "Konnte keine neuen Daten zum Server pushen!!!"
fi fi
git status git status
if ! GIT_SSH_COMMAND="ssh -oPort=1022" git pull "${push}" "${branch}"; then if ! git pull "${push}" "${branch}"; then
echo "Konnte keine neuen Daten vom Server hollen!!!" echo "Konnte keine neuen Daten vom Server hollen!!!"
fi fi