diff --git a/doc/vcsh.1.ronn b/doc/vcsh.1.ronn index b1957078400381993313762d03449e68b1128790..bcf114d4f5197a5ffab37a959f110874fd3a43dc 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 <repo> <shell command> +`vcsh` status + `vcsh` upgrade <repo> `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 3fa63d7bf266a698a8a1804fb8ae4152a41d9b5f..b88fd97325ae89cde0b3b1eb332f75d03d5bd77f 100755 --- a/vcsh +++ b/vcsh @@ -106,6 +106,7 @@ help() { <newname> Rename repository run <repo> \\ <command> Use this repository + status Show statuses of all vcsh repositories upgrade <repo> Upgrade repository to currently recommended settings version Print version information which <substring> Find substring in name of any tracked file @@ -273,6 +274,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 @@ -373,7 +384,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'