From 21b3a17b9b3e0ab21354b22b8b4017380d0a39ea Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 18 Mar 2013 10:18:53 -0400 Subject: add pbs-init --- pbs-init | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 pbs-init diff --git a/pbs-init b/pbs-init new file mode 100755 index 0000000..40918bc --- /dev/null +++ b/pbs-init @@ -0,0 +1,41 @@ +#!/bin/bash -euE + +. pbs-plumb-shlib + +cmd=${0##*/} +usage() { + echo "Usage: $cmd [OPTIONS] [DIRECTORY]" + echo 'Creates a new pbs repository' + echo '' + echo 'Options:' + echo ' -h Show this message' +} + +main() { + while getopts 'h' arg; do + case $arg in + h) usage; return 0;; + *) usage; return 1;; + esac + done + shift $(($OPTIND - 1)) + if [[ $# > 1 ]]; then + usage + return 1 + fi + + local dir=${1:-./} + mkdir -p "$dir" + cd "$dir" + + if in_pbs; then + error "Already in a PBS directory" + exit 1 + fi + + git init + touch .pbs-root + git commit -m 'initial commit' .pbs-root +} + +main "$@" -- cgit v1.1-4-g5e80