You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
481 B
19 lines
481 B
#!/usr/bin/env sh
|
|
git checkout dev
|
|
|
|
if test -n "$(git status --porcelain)"; then
|
|
echo 'Unclean working tree. Commit or stash changes first.' >&2;
|
|
exit 128;
|
|
fi
|
|
|
|
if ! git fetch --quiet 2>/dev/null; then
|
|
echo 'There was a problem fetching your branch. Run `git fetch` to see more...' >&2;
|
|
exit 128;
|
|
fi
|
|
|
|
if test "0" != "$(git rev-list --count --left-only @'{u}'...HEAD)"; then
|
|
echo 'Remote history differ. Please pull changes.' >&2;
|
|
exit 128;
|
|
fi
|
|
|
|
echo 'No conflicts.' >&2;
|