#!/bin/sh

# Fake hub implementation for use in testsuite

case "$1" in
    pull-request) exit 0;;
    fork) git remote add test $(git config --get remote.origin.url); exit 0;;
esac

git "$@"
