X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/2922b986609a4ab6c455f7d91d68e4a6830cad38..6334d6751373986fe72debe0cc9ffa54159761db:/vcsh diff --git a/vcsh b/vcsh index 19dfa05..1249089 100755 --- a/vcsh +++ b/vcsh @@ -19,7 +19,7 @@ # If '.git-HEAD' is appended to the version, you are seeing an unreleased # version of vcsh; the master branch is supposed to be clean at all times # so you can most likely just use it nonetheless -VERSION='1.20140313' +VERSION='1.20141009' SELF=$(basename $0) fatal() { @@ -284,6 +284,16 @@ retire() { unset VCSH_DIRECTORY } +list_untracked() { + for VCSH_REPO_NAME in $(list); do + [ -n $ran_once ] && files_untracked=$(printf '%s\n' "$files_untracked" | grep -x "$files_other") + export GIT_DIR="$VCSH_REPO_D/$VCSH_REPO_NAME.git" + files_other="$(git ls-files --others)" + [ -z $ran_once ] && { ran_once=1; files_untracked=$files_other; } + done + echo "$files_untracked" | sort -u +} + rename() { git_dir_exists [ -d "$GIT_DIR_NEW" ] && fatal "'$GIT_DIR_NEW' exists" 54 @@ -463,6 +473,7 @@ elif [ x"$VCSH_COMMAND" = x'delete' ] || elif [ x"$VCSH_COMMAND" = x'commit' ] || [ x"$VCSH_COMMAND" = x'list' ] || [ x"$VCSH_COMMAND" = x'list-tracked' ] || + [ x"$VCSH_COMMAND" = x'list-untracked' ] || [ x"$VCSH_COMMAND" = x'pull' ] || [ x"$VCSH_COMMAND" = x'push' ]; then :