Re: [PATCH] Add exclude file support to cg-status
From: Matt Porter <mporter@kernel.crashing.org>
Date: 2016-06-15 22:41:56
On Mon, May 02, 2005 at 06:09:19PM -0700, Junio C Hamano wrote:
quoted
quoted
quoted
quoted
quoted
"MP" == Matt Porter [off-list ref] writes:MP> Adds a trivial per-repository exclude file implementation for MP> cg-status on top of the new git-ls-files option. MP> +EXCLUDEFILE=.git/exclude Good intentions, but shouldn't the file be .git/info/exclude (i.e. under .git/info)?
Ok, here is the updated version. Signed-off-by: Matt Porter <mporter@kernel.crashing.org>
--- aa6233be6d1b8bf42797c409a7c23b50593afc99/cg-status (mode:100755 sha1:9e7f0e59284a3d15cda35bbd5579c44d8eda05d5)
+++ d69eece260c0c4fcd53991c1b37ac91b99962681/cg-status (mode:100755 sha1:874504aa8cf9ab7076eb405e19995615b4f59eab)@@ -7,8 +7,14 @@ . cg-Xlib +EXCLUDEFILE=.git/info/exclude +EXCLUDE= +if [ -f $EXCLUDEFILE ]; then + EXCLUDE="--exclude-from=$EXCLUDEFILE" +fi + { - git-ls-files -z -t --others --deleted --unmerged + git-ls-files -z -t --others --deleted --unmerged $EXCLUDE } | sort -z -k 2 | xargs -0 sh -c ' while [ "$1" ]; do tag=${1% *};