From: Richard Hartmann Date: Tue, 23 Jul 2013 23:29:04 +0000 (+0200) Subject: Merge branch 'feature--vcsh-status' X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/fa9c745105d377d950b089fdbd3b11e234f635a1?hp=ea2b0999b6291c18ca3fe98a6cc4b853c497ac17 Merge branch 'feature--vcsh-status' --- diff --git a/doc/vcsh.1.ronn b/doc/vcsh.1.ronn index 3457736..9532e65 100644 --- a/doc/vcsh.1.ronn +++ b/doc/vcsh.1.ronn @@ -29,6 +29,8 @@ vcsh(1) - Version Control System for $HOME - multiple Git repositories in $HOME `vcsh` run +`vcsh` status + `vcsh` upgrade `vcsh` version @@ -125,6 +127,9 @@ an interactive user. This is needed to support mr and other scripts properly and of no concern to an interactive user. +* status: + Show statuses of all vcsh repositories. + * upgrade: Upgrade repository to currently recommended settings. diff --git a/vcsh b/vcsh index 0742bec..98c2bab 100755 --- a/vcsh +++ b/vcsh @@ -106,6 +106,7 @@ help() { Rename repository run \\ Use this repository + status Show statuses of all vcsh repositories upgrade Upgrade repository to currently recommended settings version Print version information which Find substring in name of any tracked file @@ -275,6 +276,16 @@ run() { hook post-run } +status() { + for VCSH_REPO_NAME in $(list); do + echo "$VCSH_REPO_NAME:" + export GIT_DIR="$VCSH_REPO_D/$VCSH_REPO_NAME.git" + use + git status --short --untracked-files='no' + echo + done +} + upgrade() { hook pre-upgrade use @@ -375,7 +386,8 @@ elif [ "$1" = 'delete' ] || elif [ "$1" = 'list' ] || [ "$1" = 'list-tracked' ] || [ "$1" = 'pull' ] || - [ "$1" = 'push' ]; then + [ "$1" = 'push' ] || + [ "$1" = 'status' ]; then export VCSH_COMMAND="$1" elif [ -n "$2" ]; then export VCSH_COMMAND='run'