new_git-commands
This commit is contained in:
parent
8048acd4eb
commit
2d3d61836c
1 changed files with 3 additions and 3 deletions
6
sgit
6
sgit
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue