#!/bin/bash
if ! command -v git &> /dev/null
then
    echo "git not found"
    exit
fi

echo "Dependencies Found"