Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
git-merge-push-production.sh 164 B
#!/bin/bash

git_cmds=("checkout production" "merge devel" "push" "checkout devel")

for cmd in "${git_cmds[@]}"
do
    if ! git $cmd
    then
	exit $?
    fi
done