* [patch pasky] update gitcancel.sh to handle modes as well
@ 2005-04-14 22:57 Martin Schlemmer
2005-04-14 22:57 ` Petr Baudis
2005-04-14 23:04 ` [patch pasky] " Martin Schlemmer
0 siblings, 2 replies; 7+ messages in thread
From: Martin Schlemmer @ 2005-04-14 22:57 UTC (permalink / raw)
To: GIT Mailing Lists; +Cc: Petr Baudis
[-- Attachment #1.1: Type: text/plain, Size: 1008 bytes --]
Hi,
gitcancel.sh do not handle mode changes:
----
$ chmod -x Makefile
$ git cancel
patch: **** Only garbage was found in the patch input.
----
Rather use checkout-cache to sync our tree, as should do the right thing
instead of diffing (cancel imply just blow away everything).
Signed-off-by: Martin Schlemmer <azarah@nosferatu.za.org>
gittrack.sh: 03d6db1fb3a70605ef249c632c04e542457f0808
--- 03d6db1fb3a70605ef249c632c04e542457f0808/gittrack.sh
+++ uncommitted/gittrack.sh
@@ -51,6 +51,7 @@
read-tree $(tree-id "$name")
gitdiff.sh local "$name" | gitapply.sh
+ update-cache --refresh
else
[ "$tracking" ] || \
@@ -61,6 +62,7 @@
if [ -s ".git/HEAD.local" ]; then
gitdiff.sh "$tracking" local | gitapply.sh
read-tree $(tree-id local)
+ update-cache --refresh
head=$(cat .git/HEAD)
branchhead=$(cat .git/heads/$tracking)
--
Martin Schlemmer
[-- Attachment #1.2: git-track-update_cache.patch --]
[-- Type: text/x-patch, Size: 532 bytes --]
gittrack.sh: 03d6db1fb3a70605ef249c632c04e542457f0808
--- 03d6db1fb3a70605ef249c632c04e542457f0808/gittrack.sh
+++ uncommitted/gittrack.sh
@@ -51,6 +51,7 @@
read-tree $(tree-id "$name")
gitdiff.sh local "$name" | gitapply.sh
+ update-cache --refresh
else
[ "$tracking" ] || \
@@ -61,6 +62,7 @@
if [ -s ".git/HEAD.local" ]; then
gitdiff.sh "$tracking" local | gitapply.sh
read-tree $(tree-id local)
+ update-cache --refresh
head=$(cat .git/HEAD)
branchhead=$(cat .git/heads/$tracking)
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: update gitcancel.sh to handle modes as well
2005-04-14 22:57 [patch pasky] update gitcancel.sh to handle modes as well Martin Schlemmer
@ 2005-04-14 22:57 ` Petr Baudis
2005-04-14 23:04 ` [patch pasky] " Martin Schlemmer
1 sibling, 0 replies; 7+ messages in thread
From: Petr Baudis @ 2005-04-14 22:57 UTC (permalink / raw)
To: Martin Schlemmer; +Cc: GIT Mailing Lists
Dear diary, on Fri, Apr 15, 2005 at 12:57:25AM CEST, I got a letter
where Martin Schlemmer <azarah@nosferatu.za.org> told me that...
> Hi,
>
> gitcancel.sh do not handle mode changes:
>
> ----
> $ chmod -x Makefile
> $ git cancel
> patch: **** Only garbage was found in the patch input.
> ----
>
> Rather use checkout-cache to sync our tree, as should do the right thing
> instead of diffing (cancel imply just blow away everything).
>
> Signed-off-by: Martin Schlemmer <azarah@nosferatu.za.org>
>
> gittrack.sh: 03d6db1fb3a70605ef249c632c04e542457f0808
> --- 03d6db1fb3a70605ef249c632c04e542457f0808/gittrack.sh
> +++ uncommitted/gittrack.sh
> @@ -51,6 +51,7 @@
>
> read-tree $(tree-id "$name")
> gitdiff.sh local "$name" | gitapply.sh
> + update-cache --refresh
>
> else
> [ "$tracking" ] || \
> @@ -61,6 +62,7 @@
> if [ -s ".git/HEAD.local" ]; then
> gitdiff.sh "$tracking" local | gitapply.sh
> read-tree $(tree-id local)
> + update-cache --refresh
>
> head=$(cat .git/HEAD)
> branchhead=$(cat .git/heads/$tracking)
The patch looks familiar, but not right. ;-)
--
Petr "Pasky" Baudis
Stuff: http://pasky.or.cz/
C++: an octopus made by nailing extra legs onto a dog. -- Steve Taylor
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [patch pasky] update gitcancel.sh to handle modes as well
2005-04-14 22:57 [patch pasky] update gitcancel.sh to handle modes as well Martin Schlemmer
2005-04-14 22:57 ` Petr Baudis
@ 2005-04-14 23:04 ` Martin Schlemmer
2005-04-14 23:07 ` Petr Baudis
[not found] ` <20050414231558.GW22699@pasky.ji.cz>
1 sibling, 2 replies; 7+ messages in thread
From: Martin Schlemmer @ 2005-04-14 23:04 UTC (permalink / raw)
To: GIT Mailing Lists; +Cc: Petr Baudis
[-- Attachment #1.1: Type: text/plain, Size: 1784 bytes --]
On Fri, 2005-04-15 at 00:57 +0200, Martin Schlemmer wrote:
> Hi,
>
> gitcancel.sh do not handle mode changes:
>
> ----
> $ chmod -x Makefile
> $ git cancel
> patch: **** Only garbage was found in the patch input.
> ----
>
> Rather use checkout-cache to sync our tree, as should do the right thing
> instead of diffing (cancel imply just blow away everything).
>
> Signed-off-by: Martin Schlemmer <azarah@nosferatu.za.org>
>
> gittrack.sh: 03d6db1fb3a70605ef249c632c04e542457f0808
> --- 03d6db1fb3a70605ef249c632c04e542457f0808/gittrack.sh
> +++ uncommitted/gittrack.sh
> @@ -51,6 +51,7 @@
>
> read-tree $(tree-id "$name")
> gitdiff.sh local "$name" | gitapply.sh
> + update-cache --refresh
>
> else
> [ "$tracking" ] || \
> @@ -61,6 +62,7 @@
> if [ -s ".git/HEAD.local" ]; then
> gitdiff.sh "$tracking" local | gitapply.sh
> read-tree $(tree-id local)
> + update-cache --refresh
>
> head=$(cat .git/HEAD)
> branchhead=$(cat .git/heads/$tracking)
Yes, I am an idiot, and its past 1am already here.
Rather use checkout-cache to sync our tree, as should do the right thing
instead of diffing (cancel imply just blow away everything).
Signed-off-by: Martin Schlemmer <azarah@nosferatu.za.org>
gitcancel.sh: 839b3c58f20f6eb8412f499a891e007e2e67d114
--- 839b3c58f20f6eb8412f499a891e007e2e67d114/gitcancel.sh
+++ uncommitted/gitcancel.sh
@@ -10,9 +10,8 @@
#
# Takes no arguments. Takes the evil changes from the tree.
-# FIXME: Does not revert mode changes!
-show-diff | patch -p0 -R
rm -f .git/add-queue .git/rm-queue
+checkout-cache -q -f -a
update-cache --refresh
--
Martin Schlemmer
[-- Attachment #1.2: git-full-cancel.patch --]
[-- Type: text/x-patch, Size: 396 bytes --]
gitcancel.sh: 839b3c58f20f6eb8412f499a891e007e2e67d114
--- 839b3c58f20f6eb8412f499a891e007e2e67d114/gitcancel.sh
+++ uncommitted/gitcancel.sh
@@ -10,9 +10,8 @@
#
# Takes no arguments. Takes the evil changes from the tree.
-# FIXME: Does not revert mode changes!
-show-diff | patch -p0 -R
rm -f .git/add-queue .git/rm-queue
+checkout-cache -q -f -a
update-cache --refresh
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: Re: [patch pasky] update gitcancel.sh to handle modes as well
2005-04-14 23:04 ` [patch pasky] " Martin Schlemmer
@ 2005-04-14 23:07 ` Petr Baudis
2005-04-14 23:14 ` Martin Schlemmer
[not found] ` <20050414231558.GW22699@pasky.ji.cz>
1 sibling, 1 reply; 7+ messages in thread
From: Petr Baudis @ 2005-04-14 23:07 UTC (permalink / raw)
To: Martin Schlemmer; +Cc: GIT Mailing Lists
Dear diary, on Fri, Apr 15, 2005 at 01:04:50AM CEST, I got a letter
where Martin Schlemmer <azarah@nosferatu.za.org> told me that...
> Rather use checkout-cache to sync our tree, as should do the right thing
> instead of diffing (cancel imply just blow away everything).
>
> Signed-off-by: Martin Schlemmer <azarah@nosferatu.za.org>
>
> gitcancel.sh: 839b3c58f20f6eb8412f499a891e007e2e67d114
> --- 839b3c58f20f6eb8412f499a891e007e2e67d114/gitcancel.sh
> +++ uncommitted/gitcancel.sh
> @@ -10,9 +10,8 @@
> #
> # Takes no arguments. Takes the evil changes from the tree.
>
> -# FIXME: Does not revert mode changes!
>
> -show-diff | patch -p0 -R
> rm -f .git/add-queue .git/rm-queue
> +checkout-cache -q -f -a
>
> update-cache --refresh
Why -q?
Never make things silent unless you really know what are you doing and
why. The same goes for popular throwing of -f to rm's of files which
should always exist or 2>/dev/null for cats.
--
Petr "Pasky" Baudis
Stuff: http://pasky.or.cz/
C++: an octopus made by nailing extra legs onto a dog. -- Steve Taylor
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: Re: [patch pasky] update gitcancel.sh to handle modes as well
2005-04-14 23:07 ` Petr Baudis
@ 2005-04-14 23:14 ` Martin Schlemmer
0 siblings, 0 replies; 7+ messages in thread
From: Martin Schlemmer @ 2005-04-14 23:14 UTC (permalink / raw)
To: Petr Baudis; +Cc: GIT Mailing Lists
[-- Attachment #1: Type: text/plain, Size: 1268 bytes --]
On Fri, 2005-04-15 at 01:07 +0200, Petr Baudis wrote:
> Dear diary, on Fri, Apr 15, 2005 at 01:04:50AM CEST, I got a letter
> where Martin Schlemmer <azarah@nosferatu.za.org> told me that...
> > Rather use checkout-cache to sync our tree, as should do the right thing
> > instead of diffing (cancel imply just blow away everything).
> >
> > Signed-off-by: Martin Schlemmer <azarah@nosferatu.za.org>
> >
> > gitcancel.sh: 839b3c58f20f6eb8412f499a891e007e2e67d114
> > --- 839b3c58f20f6eb8412f499a891e007e2e67d114/gitcancel.sh
> > +++ uncommitted/gitcancel.sh
> > @@ -10,9 +10,8 @@
> > #
> > # Takes no arguments. Takes the evil changes from the tree.
> >
> > -# FIXME: Does not revert mode changes!
> >
> > -show-diff | patch -p0 -R
> > rm -f .git/add-queue .git/rm-queue
> > +checkout-cache -q -f -a
> >
> > update-cache --refresh
>
> Why -q?
>
> Never make things silent unless you really know what are you doing and
> why. The same goes for popular throwing of -f to rm's of files which
> should always exist or 2>/dev/null for cats.
>
Uhm, no particular reason (other than perhaps working usually on stuff
where too much info just confuses the user). If its fine in spirit, the
-q can go.
--
Martin Schlemmer
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <20050414231558.GW22699@pasky.ji.cz>]
* Re: Re: [patch pasky] update gitcancel.sh to handle modes as well
[not found] ` <20050414231558.GW22699@pasky.ji.cz>
@ 2005-04-14 23:39 ` Martin Schlemmer
2005-04-14 23:49 ` Petr Baudis
0 siblings, 1 reply; 7+ messages in thread
From: Martin Schlemmer @ 2005-04-14 23:39 UTC (permalink / raw)
To: Petr Baudis; +Cc: GIT Mailing Lists
[-- Attachment #1: Type: text/plain, Size: 969 bytes --]
On Fri, 2005-04-15 at 01:15 +0200, Petr Baudis wrote:
> Dear diary, on Fri, Apr 15, 2005 at 01:04:50AM CEST, I got a letter
> where Martin Schlemmer <azarah@nosferatu.za.org> told me that...
> > Rather use checkout-cache to sync our tree, as should do the right thing
> > instead of diffing (cancel imply just blow away everything).
> >
> > Signed-off-by: Martin Schlemmer <azarah@nosferatu.za.org>
> >
> > gitcancel.sh: 839b3c58f20f6eb8412f499a891e007e2e67d114
> > --- 839b3c58f20f6eb8412f499a891e007e2e67d114/gitcancel.sh
> > +++ uncommitted/gitcancel.sh
> > @@ -10,9 +10,8 @@
> > #
> > # Takes no arguments. Takes the evil changes from the tree.
> >
> > -# FIXME: Does not revert mode changes!
> >
> > -show-diff | patch -p0 -R
> > rm -f .git/add-queue .git/rm-queue
> > +checkout-cache -q -f -a
> >
> > update-cache --refresh
>
PS, shouldn't we add a read-tree $(tree-id) before the checkout-cache?
--
Martin Schlemmer
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: Re: Re: [patch pasky] update gitcancel.sh to handle modes as well
2005-04-14 23:39 ` Martin Schlemmer
@ 2005-04-14 23:49 ` Petr Baudis
0 siblings, 0 replies; 7+ messages in thread
From: Petr Baudis @ 2005-04-14 23:49 UTC (permalink / raw)
To: Martin Schlemmer; +Cc: GIT Mailing Lists
Dear diary, on Fri, Apr 15, 2005 at 01:39:06AM CEST, I got a letter
where Martin Schlemmer <azarah@nosferatu.za.org> told me that...
> On Fri, 2005-04-15 at 01:15 +0200, Petr Baudis wrote:
> > Dear diary, on Fri, Apr 15, 2005 at 01:04:50AM CEST, I got a letter
> > where Martin Schlemmer <azarah@nosferatu.za.org> told me that...
> > > Rather use checkout-cache to sync our tree, as should do the right thing
> > > instead of diffing (cancel imply just blow away everything).
> > >
> > > Signed-off-by: Martin Schlemmer <azarah@nosferatu.za.org>
> > >
> > > gitcancel.sh: 839b3c58f20f6eb8412f499a891e007e2e67d114
> > > --- 839b3c58f20f6eb8412f499a891e007e2e67d114/gitcancel.sh
> > > +++ uncommitted/gitcancel.sh
> > > @@ -10,9 +10,8 @@
> > > #
> > > # Takes no arguments. Takes the evil changes from the tree.
> > >
> > > -# FIXME: Does not revert mode changes!
> > >
> > > -show-diff | patch -p0 -R
> > > rm -f .git/add-queue .git/rm-queue
> > > +checkout-cache -q -f -a
> > >
> > > update-cache --refresh
> >
>
> PS, shouldn't we add a read-tree $(tree-id) before the checkout-cache?
A correct tree should be in the index. And if for any completely weird
and smelly reason it isn't, I'm pondering if we should back that out and
always reread-tree (takes some time, but do you do git cancel all the
time?), or rather comply to it and adjust to the loaded tree, whichever
it is.
--
Petr "Pasky" Baudis
Stuff: http://pasky.or.cz/
C++: an octopus made by nailing extra legs onto a dog. -- Steve Taylor
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2005-04-14 23:45 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-14 22:57 [patch pasky] update gitcancel.sh to handle modes as well Martin Schlemmer
2005-04-14 22:57 ` Petr Baudis
2005-04-14 23:04 ` [patch pasky] " Martin Schlemmer
2005-04-14 23:07 ` Petr Baudis
2005-04-14 23:14 ` Martin Schlemmer
[not found] ` <20050414231558.GW22699@pasky.ji.cz>
2005-04-14 23:39 ` Martin Schlemmer
2005-04-14 23:49 ` Petr Baudis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox