* [PATCH v3] gitk: add --no-replace-objects option
@ 2009-11-20 19:40 Christian Couder
2009-11-20 20:04 ` Junio C Hamano
0 siblings, 1 reply; 5+ messages in thread
From: Christian Couder @ 2009-11-20 19:40 UTC (permalink / raw)
To: Junio C Hamano
Cc: git, Michael J Gruber, Jakub Narebski, Johannes Sixt, bill lam,
Andreas Schwab, Paul Mackerras
This option simply sets the GIT_NO_REPLACE_OBJECTS environment
variable, and that is enough to make gitk ignore replace refs.
The GIT_NO_REPLACE_OBJECTS is set to "1" instead of "" as it is
safer on some platforms, thanks to Johannes Sixt and Michael J
Gruber.
Replace refs are useful to change some git objects after they
have started to be shared between different repositories. One
might want to ignore them to see the original state.
Tested-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
---
gitk-git/gitk | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/gitk-git/gitk b/gitk-git/gitk
index a0214b7..c586b93 100644
--- a/gitk-git/gitk
+++ b/gitk-git/gitk
@@ -128,7 +128,7 @@ proc unmerged_files {files} {
}
proc parseviewargs {n arglist} {
- global vdatemode vmergeonly vflags vdflags vrevs vfiltered vorigargs
+ global vdatemode vmergeonly vflags vdflags vrevs vfiltered vorigargs env
set vdatemode($n) 0
set vmergeonly($n) 0
@@ -208,6 +208,9 @@ proc parseviewargs {n arglist} {
# git rev-parse doesn't understand --merge
lappend revargs --gitk-symmetric-diff-marker MERGE_HEAD...HEAD
}
+ "--no-replace-objects" {
+ set env(GIT_NO_REPLACE_OBJECTS) "1"
+ }
"-*" {
# Other flag arguments including -<n>
if {[string is digit -strict [string range $arg 1 end]]} {
--
1.6.5.1.gaf97d
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH v3] gitk: add --no-replace-objects option
2009-11-20 19:40 [PATCH v3] gitk: add --no-replace-objects option Christian Couder
@ 2009-11-20 20:04 ` Junio C Hamano
2009-11-20 20:42 ` Christian Couder
0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2009-11-20 20:04 UTC (permalink / raw)
To: Christian Couder
Cc: git, Michael J Gruber, Jakub Narebski, Johannes Sixt, bill lam,
Andreas Schwab, Paul Mackerras
Christian Couder <chriscool@tuxfamily.org> writes:
> This option simply sets the GIT_NO_REPLACE_OBJECTS environment
> variable, and that is enough to make gitk ignore replace refs.
This is a much less interesting implementation detail than everything else
you should talk about the new feature you are adding; why is it the first
sentence of the message?
> The GIT_NO_REPLACE_OBJECTS is set to "1" instead of "" as it is
> safer on some platforms, thanks to Johannes Sixt and Michael J
> Gruber.
And this is even less interesting.
> Replace refs are useful to change some git objects after they
> have started to be shared between different repositories. One
> might want to ignore them to see the original state.
This is what the reader needs to see to understand why this patch is
worthy of consideration. It is a minor offense that the paragraph does
not end with "... original state, and --no-replace-objects option can be
used from the command line to do so", but this could be excused if this is
made the first paragraph in the message, close to the subject.
I wonder if this switch deserves run-time flippability, though...
> Tested-by: Michael J Gruber <git@drmicha.warpmail.net>
> Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
> ---
> gitk-git/gitk | 5 ++++-
> 1 files changed, 4 insertions(+), 1 deletions(-)
>
> diff --git a/gitk-git/gitk b/gitk-git/gitk
> index a0214b7..c586b93 100644
> --- a/gitk-git/gitk
> +++ b/gitk-git/gitk
> @@ -128,7 +128,7 @@ proc unmerged_files {files} {
> }
>
> proc parseviewargs {n arglist} {
> - global vdatemode vmergeonly vflags vdflags vrevs vfiltered vorigargs
> + global vdatemode vmergeonly vflags vdflags vrevs vfiltered vorigargs env
>
> set vdatemode($n) 0
> set vmergeonly($n) 0
> @@ -208,6 +208,9 @@ proc parseviewargs {n arglist} {
> # git rev-parse doesn't understand --merge
> lappend revargs --gitk-symmetric-diff-marker MERGE_HEAD...HEAD
> }
> + "--no-replace-objects" {
> + set env(GIT_NO_REPLACE_OBJECTS) "1"
> + }
> "-*" {
> # Other flag arguments including -<n>
> if {[string is digit -strict [string range $arg 1 end]]} {
> --
> 1.6.5.1.gaf97d
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH v3] gitk: add --no-replace-objects option
2009-11-20 20:04 ` Junio C Hamano
@ 2009-11-20 20:42 ` Christian Couder
2009-11-20 20:55 ` Junio C Hamano
0 siblings, 1 reply; 5+ messages in thread
From: Christian Couder @ 2009-11-20 20:42 UTC (permalink / raw)
To: Junio C Hamano
Cc: git, Michael J Gruber, Jakub Narebski, Johannes Sixt, bill lam,
Andreas Schwab, Paul Mackerras
On vendredi 20 novembre 2009, Junio C Hamano wrote:
> Christian Couder <chriscool@tuxfamily.org> writes:
> > This option simply sets the GIT_NO_REPLACE_OBJECTS environment
> > variable, and that is enough to make gitk ignore replace refs.
>
> This is a much less interesting implementation detail than everything
> else you should talk about the new feature you are adding; why is it the
> first sentence of the message?
This patch was previously the second patch in a 2 patch series so the
previous patch was already explaining some context. Perhaps I should have
sent the first patch again with this one.
> > The GIT_NO_REPLACE_OBJECTS is set to "1" instead of "" as it is
> > safer on some platforms, thanks to Johannes Sixt and Michael J
> > Gruber.
>
> And this is even less interesting.
>
> > Replace refs are useful to change some git objects after they
> > have started to be shared between different repositories. One
> > might want to ignore them to see the original state.
>
> This is what the reader needs to see to understand why this patch is
> worthy of consideration. It is a minor offense that the paragraph does
> not end with "... original state, and --no-replace-objects option can be
> used from the command line to do so", but this could be excused if this
> is made the first paragraph in the message, close to the subject.
Ok, I will send the full series again with these changes.
> I wonder if this switch deserves run-time flippability, though...
The following patch in master added run-time flippability to many commands:
http://git.kernel.org/?p=git/git.git;a=commit;h=b0fa7ab51b29d34579d8f6bb4443dfbcb8278c7a
and Michael J Gruber wrote "we need a way to specify
--no-replace-objects for gitk" in this message:
http://article.gmane.org/gmane.comp.version-control.git/132576/
Best regards,
Christian.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v3] gitk: add --no-replace-objects option
2009-11-20 20:42 ` Christian Couder
@ 2009-11-20 20:55 ` Junio C Hamano
2009-11-20 21:15 ` Christian Couder
0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2009-11-20 20:55 UTC (permalink / raw)
To: Christian Couder
Cc: Junio C Hamano, git, Michael J Gruber, Jakub Narebski,
Johannes Sixt, bill lam, Andreas Schwab, Paul Mackerras
Christian Couder <chriscool@tuxfamily.org> writes:
>> I wonder if this switch deserves run-time flippability, though...
>
> The following patch in master added run-time flippability to many commands:
What I meant was not that. I was wondering if the user wants to flip from
the gitk GUI without restarting gitk.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v3] gitk: add --no-replace-objects option
2009-11-20 20:55 ` Junio C Hamano
@ 2009-11-20 21:15 ` Christian Couder
0 siblings, 0 replies; 5+ messages in thread
From: Christian Couder @ 2009-11-20 21:15 UTC (permalink / raw)
To: Junio C Hamano
Cc: git, Michael J Gruber, Jakub Narebski, Johannes Sixt, bill lam,
Andreas Schwab, Paul Mackerras
On vendredi 20 novembre 2009, Junio C Hamano wrote:
> Christian Couder <chriscool@tuxfamily.org> writes:
> >> I wonder if this switch deserves run-time flippability, though...
> >
> > The following patch in master added run-time flippability to many
> > commands:
>
> What I meant was not that. I was wondering if the user wants to flip
> from the gitk GUI without restarting gitk.
Ah ok, yes this would be nice. But anyway I think the current patch is a
first good step.
Thanks,
Christian.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-11-20 21:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-20 19:40 [PATCH v3] gitk: add --no-replace-objects option Christian Couder
2009-11-20 20:04 ` Junio C Hamano
2009-11-20 20:42 ` Christian Couder
2009-11-20 20:55 ` Junio C Hamano
2009-11-20 21:15 ` Christian Couder
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox