* [PATCH] cogito: cg-status option to show modified/uncommitted files
@ 2005-04-28 22:43 Matt Porter
  0 siblings, 0 replies; only message in thread
From: Matt Porter @ 2005-04-28 22:43 UTC (permalink / raw)
  To: pasky; +Cc: git
Adds a -a option to show all status of the working tree. After hacking
around I like to see what's new AND what's modified but uncommitted.
-Matt
Signed-off-by: Matt Porter <mporter@kernel.crashing.org>
===================================================================
--- c3aa1e6b53cc59d5fbe261f3f859584904ae3a63/cg-status  (mode:100755 sha1:c9b69b9d54b6a6756f0ecad5324642eb66810b33)
+++ uncommitted/cg-status  (mode:100755)
@@ -3,7 +3,8 @@
 # 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 +21,18 @@
 	shift
 done
 ' padding
+
+
+if [ "$1" = "-a" ]; then
+	{
+		update-cache --refresh
+	} | xargs -0 sh -c '
+while [ "$1" ]; do
+tag="M";
+filename=${1%: *};
+echo "$tag $filename";
+shift
+done
+' padding
+fi
+
^ permalink raw reply	[flat|nested] only message in thread
only message in thread, other threads:[~2005-04-28 22:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-28 22:43 [PATCH] cogito: cg-status option to show modified/uncommitted files Matt Porter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).