#!/bin/sh

# Fake hub implementation for use in testsuite

case "$1" in
    pull-request) exit 0;;
    fork) exit 0;;
esac

git "$@"
