From: Matt Porter <mporter@kernel•crashing.org>
To: Petr Baudis <pasky@ucw•cz>
Cc: git@vger•kernel.org
Subject: [PATCH] Add exclude file support to cg-status
Date: Mon, 2 May 2005 17:10:42 -0700 [thread overview]
Message-ID: <20050502171042.A24299@cox.net> (raw)
Adds a trivial per-repository exclude file implementation for
cg-status on top of the new git-ls-files option.
Signed-off-by: Matt Porter <mporter@kernel•crashing.org>
--- 002c6f1e4924965e2101d2e6447855f10c55df41/cg-status (mode:100755 sha1:9e7f0e59284a3d15cda35bbd5579c44d8eda05d5)
+++ 1b8c5395679e5c04734b1c86445a6355124ada7e/cg-status (mode:100755 sha1:6669e36f5ff5d5964882b58ba43a5dcab4fd7fc6)
@@ -7,8 +7,14 @@
. cg-Xlib
+EXCLUDEFILE=.git/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% *};
next reply other threads:[~2005-05-03 0:06 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-03 0:10 Matt Porter [this message]
2005-05-03 1:09 ` [PATCH] Add exclude file support to cg-status Junio C Hamano
2005-05-03 2:33 ` Matt Porter
2005-05-03 4:15 ` Junio C Hamano
2005-05-03 4:21 ` Matt Porter
2005-05-03 4:27 ` Matt Porter
2005-05-08 1:50 ` Petr Baudis
2005-05-08 23:28 ` Junio C Hamano
2005-05-08 23:42 ` Petr Baudis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20050502171042.A24299@cox.net \
--to=mporter@kernel$(echo .)crashing.org \
--cc=git@vger$(echo .)kernel.org \
--cc=pasky@ucw$(echo .)cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox