[PATCH] cogito: Updated cg-status -a
From: Matt Porter <mporter@kernel.crashing.org>
Date: 2016-06-15 22:41:56
Updated patch versus latest cogito and bug fix for a thinko. If -a is passed, the same output is generated but it also shows all modified but uncommitted files as well. Signed-off-by: Matt Porter <mporter@kernel.crashing.org>
--- aa6233be6d1b8bf42797c409a7c23b50593afc99/cg-status (mode:100755 sha1:9e7f0e59284a3d15cda35bbd5579c44d8eda05d5)
+++ ee35a6204e59cf47966080be20d8248a6e4aa3c3/cg-status (mode:100755 sha1:dc821a1255f012a612aa4d25ffc551c32b017bd9)@@ -3,7 +3,9 @@ # Show status of entries in your working tree. # Copyright (c) Petr Baudis, 2005 # -# Takes no arguments. +# Takes an optional -a argument which will cause all repository status +# to be shown, including modified but uncommitted files + . cg-Xlib
@@ -20,3 +22,16 @@ shift done ' padding + +if [ "$1" = "-a" ]; then + { + git-update-cache --refresh + } | cut -f 1 -d ":" | xargs sh -c ' + while [ "$1" ]; do + tag="M"; + filename=${1%: *}; + echo "$tag $filename"; + shift + done + ' padding +fi