Dotfiles, utilities, and other apparatus.
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.
|
#!/bin/sh
|
|
|
|
# Help messages:
|
|
USAGE="<command>"
|
|
LONG_USAGE="Executes <command> from the root of the repository."
|
|
|
|
# Tell git-sh-setup we're ok with being in a subdir:
|
|
SUBDIRECTORY_OK=1
|
|
|
|
. "$(git --exec-path)/git-sh-setup"
|
|
|
|
# Make sure we're in a working tree, jump to top level, do command:
|
|
require_work_tree_exists
|
|
cd_to_toplevel
|
|
$@
|