From 86f39f44fb58cd421638aeff1bc986b63182040b Mon Sep 17 00:00:00 2001 From: Richard Hartmann Date: Sat, 25 Oct 2014 18:09:53 +0200 Subject: [PATCH] vcsh: Rename where() to base() As per https://github.com/RichiH/vcsh/pull/115#issuecomment-60473924 : Is where a good name? Maybe use base instead? Rationale being that base is already used internally in $VCSH_BASE. --- doc/vcsh.1.ronn | 14 +++++++------- vcsh | 12 ++++++------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/vcsh.1.ronn b/doc/vcsh.1.ronn index 66cdebff..3938704f 100644 --- a/doc/vcsh.1.ronn +++ b/doc/vcsh.1.ronn @@ -3,6 +3,8 @@ vcsh(1) - Version Control System for $HOME - multiple Git repositories in $HOME ## SYNOPSIS +`vcsh` base + `vcsh` [] `vcsh` clone [] @@ -37,8 +39,6 @@ vcsh(1) - Version Control System for $HOME - multiple Git repositories in $HOME `vcsh` version -`vcsh` where - `vcsh` which `vcsh` write-gitignore @@ -84,6 +84,10 @@ an interactive user. ## COMMANDS +* base: + + Print base <$VCSH_BASE> and config <$XDG_CONFIG_HOME> variables. + * clone: Clone an existing repository. @@ -142,7 +146,7 @@ an interactive user. cloning the template. `vcsh` will detect the configuration from any directory below the - setup directory. Use `vcsh where` to verify the above settings. + setup directory. Use `vcsh base` to verify the above settings. * status: Show statuses of all/one vcsh repositories. @@ -153,10 +157,6 @@ an interactive user. * version: Print version information. -* where: - - Print base <$VCSH_BASE> and config <$XDG_CONFIG_HOME> variables. - * which : Find in name of any tracked file. diff --git a/vcsh b/vcsh index 4f106644..fa6476a8 100755 --- a/vcsh +++ b/vcsh @@ -113,6 +113,7 @@ help() { -v Enable verbose mode commands: + base Print base and config directories clone \\ [] Clone from an existing repository commit Commit in all repositories @@ -134,7 +135,6 @@ help() { status [] Show statuses of all/one vcsh repositories upgrade Upgrade repository to currently recommended settings version Print version information - where Print base and config directories which Find substring in name of any tracked file write-gitignore \\ Write .gitignore.d/ via git ls-files @@ -373,7 +373,7 @@ use() { export VCSH_DIRECTORY="$VCSH_REPO_NAME" } -where() { +base() { echo "\$VCSH_BASE is $VCSH_BASE" echo "\$XDG_CONFIG_HOME is $XDG_CONFIG_HOME" } @@ -440,6 +440,7 @@ fi export VCSH_COMMAND="$1" case "$VCSH_COMMAND" in + bas|ba) VCSH_COMMAND=base;; clon|clo|cl) VCSH_COMMAND=clone;; commi|comm|com|co) VCSH_COMMAND=commit;; delet|dele|del|de) VCSH_COMMAND=delete;; @@ -454,7 +455,6 @@ case "$VCSH_COMMAND" in statu|stat|sta|st) VCSH_COMMAND=status;; upgrad|upgra|upgr|up) VCSH_COMMAND=upgrade;; versio|versi|vers|ver|ve) VCSH_COMMAND=version;; - where|whe) VCSH_COMMAND=where;; which|whi) VCSH_COMMAND=which;; write|writ|wri|wr) VCSH_COMMAND=write-gitignore;; esac @@ -492,12 +492,12 @@ elif [ "$VCSH_COMMAND" = 'delete' ] || [ "$VCSH_COMMAND" = 'rename' ] && { export VCSH_REPO_NAME_NEW="$3"; export GIT_DIR_NEW="$VCSH_REPO_D/$VCSH_REPO_NAME_NEW.git"; } [ "$VCSH_COMMAND" = 'run' ] && shift 2 -elif [ "$VCSH_COMMAND" = 'commit' ] || +elif [ "$VCSH_COMMAND" = 'base' ] || + [ "$VCSH_COMMAND" = 'commit' ] || [ "$VCSH_COMMAND" = 'list' ] || [ "$VCSH_COMMAND" = 'list-tracked' ] || [ "$VCSH_COMMAND" = 'pull' ] || - [ "$VCSH_COMMAND" = 'push' ] || - [ "$VCSH_COMMAND" = 'where' ]; then + [ "$VCSH_COMMAND" = 'push' ]; then : elif [ "$VCSH_COMMAND" = 'status' ]; then export VCSH_REPO_NAME="$2"