#!/usr/bin/env bash
## Prints the path to the root of the git repository you're in.
## Source: git-extra-commands

#
# Print the root of the git checkout you're in.

exec git rev-parse --show-toplevel
