* [PATCH] git-gui: show staged submodules regardless of ignore config
@ 2014-04-08 19:30 Jens Lehmann
2014-04-15 22:32 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Jens Lehmann @ 2014-04-08 19:30 UTC (permalink / raw)
To: Pat Thoyts; +Cc: Git Mailing List
Currently setting submodule.<name>.ignore and/or diff.ignoreSubmodules to
"all" suppresses all output of submodule changes for git-gui. This is
really confusing, as even when the user chooses to record a new commit for
an ignored submodule by adding it manually this change won't show up under
"Staged Changes (Will Commit)".
Fix that by using the '--ignore-submodules=dirty' option for both callers
of "git diff-index --cached" when the underlying git version supports that
option.
Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
---
git-gui.sh | 6 +++++-
lib/diff.tcl | 3 +++
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/git-gui.sh b/git-gui.sh
index cf2209b..c69bfb3 100755
--- a/git-gui.sh
+++ b/git-gui.sh
@@ -1558,7 +1558,11 @@ proc rescan_stage2 {fd after} {
set rescan_active 2
ui_status [mc "Scanning for modified files ..."]
- set fd_di [git_read diff-index --cached -z [PARENT]]
+ if {[git-version >= "1.7.2"]} {
+ set fd_di [git_read diff-index --cached --ignore-submodules=dirty -z [PARENT]]
+ } else {
+ set fd_di [git_read diff-index --cached -z [PARENT]]
+ }
set fd_df [git_read diff-files -z]
fconfigure $fd_di -blocking 0 -translation binary -encoding binary
diff --git a/lib/diff.tcl b/lib/diff.tcl
index 30d9a79..b0a5180 100644
--- a/lib/diff.tcl
+++ b/lib/diff.tcl
@@ -287,6 +287,9 @@ proc start_show_diff {cont_info {add_opts {}}} {
if {$w eq $ui_index} {
lappend cmd diff-index
lappend cmd --cached
+ if {[git-version >= "1.7.2"]} {
+ lappend cmd --ignore-submodules=dirty
+ }
} elseif {$w eq $ui_workdir} {
if {[string first {U} $m] >= 0} {
lappend cmd diff
--
1.9.1.492.g8149f6f
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] git-gui: show staged submodules regardless of ignore config
2014-04-08 19:30 Jens Lehmann
@ 2014-04-15 22:32 ` Junio C Hamano
0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2014-04-15 22:32 UTC (permalink / raw)
To: Pat Thoyts; +Cc: Jens Lehmann, Git Mailing List
Jens Lehmann <Jens.Lehmann@web.de> writes:
> Currently setting submodule.<name>.ignore and/or diff.ignoreSubmodules to
> "all" suppresses all output of submodule changes for git-gui. This is
> really confusing, as even when the user chooses to record a new commit for
> an ignored submodule by adding it manually this change won't show up under
> "Staged Changes (Will Commit)".
>
> Fix that by using the '--ignore-submodules=dirty' option for both callers
> of "git diff-index --cached" when the underlying git version supports that
> option.
>
> Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
> ---
I'll tentatively queue this on jl/git-gui-show-added-submodule-changes
and park it on 'pu'.
I'll be tagging 2.0.0-rc0 later this week; if you have some
accumulated changes (I saw that your public repository is at
gitgui-0.19.0 which I already have), please plan to get them
in by the end of next week.
Thanks.
> git-gui.sh | 6 +++++-
> lib/diff.tcl | 3 +++
> 2 files changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/git-gui.sh b/git-gui.sh
> index cf2209b..c69bfb3 100755
> --- a/git-gui.sh
> +++ b/git-gui.sh
> @@ -1558,7 +1558,11 @@ proc rescan_stage2 {fd after} {
>
> set rescan_active 2
> ui_status [mc "Scanning for modified files ..."]
> - set fd_di [git_read diff-index --cached -z [PARENT]]
> + if {[git-version >= "1.7.2"]} {
> + set fd_di [git_read diff-index --cached --ignore-submodules=dirty -z [PARENT]]
> + } else {
> + set fd_di [git_read diff-index --cached -z [PARENT]]
> + }
> set fd_df [git_read diff-files -z]
>
> fconfigure $fd_di -blocking 0 -translation binary -encoding binary
> diff --git a/lib/diff.tcl b/lib/diff.tcl
> index 30d9a79..b0a5180 100644
> --- a/lib/diff.tcl
> +++ b/lib/diff.tcl
> @@ -287,6 +287,9 @@ proc start_show_diff {cont_info {add_opts {}}} {
> if {$w eq $ui_index} {
> lappend cmd diff-index
> lappend cmd --cached
> + if {[git-version >= "1.7.2"]} {
> + lappend cmd --ignore-submodules=dirty
> + }
> } elseif {$w eq $ui_workdir} {
> if {[string first {U} $m] >= 0} {
> lappend cmd diff
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] git-gui: show staged submodules regardless of ignore config
@ 2014-06-06 21:10 Junio C Hamano
2014-06-13 17:36 ` Pat Thoyts
0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2014-06-06 21:10 UTC (permalink / raw)
To: Pat Thoyts; +Cc: git
From: Jens Lehmann <Jens.Lehmann@web.de>
Date: Tue, 8 Apr 2014 21:30:51 +0200
Currently setting submodule.<name>.ignore and/or diff.ignoreSubmodules to
"all" suppresses all output of submodule changes for git-gui. This is
really confusing, as even when the user chooses to record a new commit for
an ignored submodule by adding it manually this change won't show up under
"Staged Changes (Will Commit)".
Fix that by using the '--ignore-submodules=dirty' option for both callers
of "git diff-index --cached" when the underlying git version supports that
option.
Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
---
* Pat, I've been carrying this in my 'pu' but I would prefer
changes to git-gui fed to me through you. Could you apply this
so that I can drop my tentative copy?
git-gui.sh | 6 +++++-
lib/diff.tcl | 3 +++
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/git-gui.sh b/git-gui.sh
index cf2209b..c69bfb3 100755
--- a/git-gui.sh
+++ b/git-gui.sh
@@ -1558,7 +1558,11 @@ proc rescan_stage2 {fd after} {
set rescan_active 2
ui_status [mc "Scanning for modified files ..."]
- set fd_di [git_read diff-index --cached -z [PARENT]]
+ if {[git-version >= "1.7.2"]} {
+ set fd_di [git_read diff-index --cached --ignore-submodules=dirty -z [PARENT]]
+ } else {
+ set fd_di [git_read diff-index --cached -z [PARENT]]
+ }
set fd_df [git_read diff-files -z]
fconfigure $fd_di -blocking 0 -translation binary -encoding binary
diff --git a/lib/diff.tcl b/lib/diff.tcl
index 30d9a79..b0a5180 100644
--- a/lib/diff.tcl
+++ b/lib/diff.tcl
@@ -287,6 +287,9 @@ proc start_show_diff {cont_info {add_opts {}}} {
if {$w eq $ui_index} {
lappend cmd diff-index
lappend cmd --cached
+ if {[git-version >= "1.7.2"]} {
+ lappend cmd --ignore-submodules=dirty
+ }
} elseif {$w eq $ui_workdir} {
if {[string first {U} $m] >= 0} {
lappend cmd diff
--
2.0.0-531-gbd04298
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] git-gui: show staged submodules regardless of ignore config
2014-06-06 21:10 [PATCH] git-gui: show staged submodules regardless of ignore config Junio C Hamano
@ 2014-06-13 17:36 ` Pat Thoyts
0 siblings, 0 replies; 4+ messages in thread
From: Pat Thoyts @ 2014-06-13 17:36 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Jens Lehmann, Git Mailing List
Junio C Hamano <gitster@pobox.com> writes:
>From: Jens Lehmann <Jens.Lehmann@web.de>
>Date: Tue, 8 Apr 2014 21:30:51 +0200
>
>Currently setting submodule.<name>.ignore and/or diff.ignoreSubmodules to
>"all" suppresses all output of submodule changes for git-gui. This is
>really confusing, as even when the user chooses to record a new commit for
>an ignored submodule by adding it manually this change won't show up under
>"Staged Changes (Will Commit)".
>
>Fix that by using the '--ignore-submodules=dirty' option for both callers
>of "git diff-index --cached" when the underlying git version supports that
>option.
>
>Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
>Signed-off-by: Junio C Hamano <gitster@pobox.com>
>---
>
> * Pat, I've been carrying this in my 'pu' but I would prefer
> changes to git-gui fed to me through you. Could you apply this
> so that I can drop my tentative copy?
>
OK - Applied.
--
Pat Thoyts http://www.patthoyts.tk/
PGP fingerprint 2C 6E 98 07 2C 59 C8 97 10 CE 11 E6 04 E0 B9 DD
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-06-13 17:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-06 21:10 [PATCH] git-gui: show staged submodules regardless of ignore config Junio C Hamano
2014-06-13 17:36 ` Pat Thoyts
-- strict thread matches above, loose matches on Subject: below --
2014-04-08 19:30 Jens Lehmann
2014-04-15 22:32 ` Junio C Hamano
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).