This commit is contained in:
simono41 2017-09-14 14:57:56 +02:00
parent 6b5862fba1
commit e73021f2f3
2 changed files with 26 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#!/bin/bash
set -x
set -ex
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
@ -8,7 +8,9 @@ if [[ $EUID -ne 0 ]]; then
fi
echo "Als root Angemeldet"
apt-get install git libssl-dev libpam0g-dev zlib1g-dev dh-autoreconf
apt update
apt install git libssl-dev libpam0g-dev zlib1g-dev dh-autoreconf
pacman -S git openssl autoconf automake make gcc

22
sgit Executable file
View file

@ -0,0 +1,22 @@
#!/bin/bash
set -ex
if [[ "--help" == "${1}" ]]; then
echo "bash ./sgit user.email commit"
fi
if [[ -z "${2}" ]]; then
echo "Bitte email und commit angeben!!!"
exit 1
fi
git config --global user.email "${1}"
git config --global user.name "${1}"
git status
git pull
git add --all
git commit --all -m "${2}"
git show
git push
git status