* git-gui ignores core.excludesFile
@ 2007-07-23 15:07 Lars Noschinski
2007-07-29 7:22 ` Shawn O. Pearce
0 siblings, 1 reply; 2+ messages in thread
From: Lars Noschinski @ 2007-07-23 15:07 UTC (permalink / raw)
To: git, spearce
Hello!
It seems git-gui (0.7.5 from git 1.5.2.4 tarball) ignores the global
ignore file configured with the core.excludesfile option. My
~/.gitconfig contains
[core]
excludesFile = /home/noschinski/.gitignore
which is honoured by git-status but not by git-gui.
Greetings,
Lars.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: git-gui ignores core.excludesFile
2007-07-23 15:07 git-gui ignores core.excludesFile Lars Noschinski
@ 2007-07-29 7:22 ` Shawn O. Pearce
0 siblings, 0 replies; 2+ messages in thread
From: Shawn O. Pearce @ 2007-07-29 7:22 UTC (permalink / raw)
To: Lars Noschinski; +Cc: git
Lars Noschinski <lars@public.noschinski.de> wrote:
> It seems git-gui (0.7.5 from git 1.5.2.4 tarball) ignores the global
> ignore file configured with the core.excludesfile option. My
> ~/.gitconfig contains
>
> [core]
> excludesFile = /home/noschinski/.gitignore
>
> which is honoured by git-status but not by git-gui.
Whoops. Thanks. git-gui 0.8.0 will include the following patch:
-->8--
From 94a4dd9bfda79a226f8dd57fd20c39c6603ec194 Mon Sep 17 00:00:00 2001
From: Shawn O. Pearce <spearce@spearce.org>
Date: Sun, 29 Jul 2007 03:22:27 -0400
Subject: [PATCH] git-gui: Honor core.excludesfile when listing extra files
Recent git versions have a git-status that honors the core.excludesfile
configuration option when it reports on untracked files. Unfortunately
I missed the introduction of this configuration option in the core
porcelain implementation, so it was not reflected here in git-gui.
Found and reported by Lars Noschinski <lars@public.noschinski.de>.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
---
git-gui.sh | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/git-gui.sh b/git-gui.sh
index d7fad46..4e3b58c 100755
--- a/git-gui.sh
+++ b/git-gui.sh
@@ -872,6 +872,10 @@ proc rescan_stage2 {fd after} {
if {[file readable $info_exclude]} {
lappend ls_others "--exclude-from=$info_exclude"
}
+ set user_exclude [get_config core.excludesfile]
+ if {$user_exclude ne {} && [file readable $user_exclude]} {
+ lappend ls_others "--exclude-from=$user_exclude"
+ }
set buf_rdi {}
set buf_rdf {}
--
1.5.3.rc3.843.g25b4
--
Shawn.
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-07-29 7:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-23 15:07 git-gui ignores core.excludesFile Lars Noschinski
2007-07-29 7:22 ` Shawn O. Pearce
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).