* [COGITO PATCH] Small, simple and obvious cleanups (are they wanted at this stage?)
@ 2005-06-01 19:22 C. Cooke
2005-06-05 20:25 ` Petr Baudis
0 siblings, 1 reply; 3+ messages in thread
From: C. Cooke @ 2005-06-01 19:22 UTC (permalink / raw)
To: git
This is a simple example - giving a nice error if you're in the wrong
directory.
Is this sort of patch wanted? If so, I'm sure I can spare the time to
look into some polishing.
------------------------------
Add some sanity checking - does $_git exist, and is it writable.
---
commit 06afdeefff9fe02cd2a67f223e687646cacf736f
tree cebc55541b89b5370335fc172814feb48456dc85
parent 20e473c9afd8b5d2d549b0e7881473600beb9c37
author C. Cooke <ccooke@slab.earth.gkhs.net> Wed, 01 Jun 2005 20:03:46 +0100
committer C. Cooke <ccooke@slab.earth.gkhs.net> Wed, 01 Jun 2005
20:03:46 +0100
cg-Xnormid | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/cg-Xnormid b/cg-Xnormid
--- a/cg-Xnormid
+++ b/cg-Xnormid
@@ -16,6 +16,15 @@
id="$1"
+# A little sanity checking.
+if [ ! -d "$_git" ]; then
+ echo "There is no Git repository here ($_git not found)" >&2
+ exit 1
+elif [ ! -r "$_git" ] || [ ! -x "$_git" ]; then
+ echo "You do not have permission to access this git repository" >&2
+ exit 1
+fi
+
if [ ! "$id" ] || [ "$id" = "this" ] || [ "$id" = "HEAD" ]; then
read id < "$_git/HEAD"
______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
______________________________________________________________________
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [COGITO PATCH] Small, simple and obvious cleanups (are they wanted at this stage?)
2005-06-01 19:22 [COGITO PATCH] Small, simple and obvious cleanups (are they wanted at this stage?) C. Cooke
@ 2005-06-05 20:25 ` Petr Baudis
2005-06-05 20:34 ` Petr Baudis
0 siblings, 1 reply; 3+ messages in thread
From: Petr Baudis @ 2005-06-05 20:25 UTC (permalink / raw)
To: C. Cooke; +Cc: git
Dear diary, on Wed, Jun 01, 2005 at 09:22:48PM CEST, I got a letter
where "C. Cooke" <ccooke@gkhs.net> told me that...
> This is a simple example - giving a nice error if you're in the wrong
> directory.
>
> Is this sort of patch wanted? If so, I'm sure I can spare the time to
> look into some polishing.
Of course they are wanted. Thanks, applied.
> ------------------------------
> Add some sanity checking - does $_git exist, and is it writable.
>
> ---
> commit 06afdeefff9fe02cd2a67f223e687646cacf736f
> tree cebc55541b89b5370335fc172814feb48456dc85
> parent 20e473c9afd8b5d2d549b0e7881473600beb9c37
> author C. Cooke <ccooke@slab.earth.gkhs.net> Wed, 01 Jun 2005 20:03:46 +0100
> committer C. Cooke <ccooke@slab.earth.gkhs.net> Wed, 01 Jun 2005
> 20:03:46 +0100
>
> cg-Xnormid | 9 +++++++++
> 1 files changed, 9 insertions(+), 0 deletions(-)
>
> diff --git a/cg-Xnormid b/cg-Xnormid
> --- a/cg-Xnormid
> +++ b/cg-Xnormid
> @@ -16,6 +16,15 @@
>
> id="$1"
>
> +# A little sanity checking.
> +if [ ! -d "$_git" ]; then
> + echo "There is no Git repository here ($_git not found)" >&2
> + exit 1
> +elif [ ! -r "$_git" ] || [ ! -x "$_git" ]; then
> + echo "You do not have permission to access this git repository" >&2
> + exit 1
> +fi
> +
> if [ ! "$id" ] || [ "$id" = "this" ] || [ "$id" = "HEAD" ]; then
> read id < "$_git/HEAD"
I removed the -r check. What is it good for?
--
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] 3+ messages in thread
* Re: [COGITO PATCH] Small, simple and obvious cleanups (are they wanted at this stage?)
2005-06-05 20:25 ` Petr Baudis
@ 2005-06-05 20:34 ` Petr Baudis
0 siblings, 0 replies; 3+ messages in thread
From: Petr Baudis @ 2005-06-05 20:34 UTC (permalink / raw)
To: C. Cooke; +Cc: git
Dear diary, on Sun, Jun 05, 2005 at 10:25:27PM CEST, I got a letter
where Petr Baudis <pasky@ucw.cz> told me that...
> Dear diary, on Wed, Jun 01, 2005 at 09:22:48PM CEST, I got a letter
> where "C. Cooke" <ccooke@gkhs.net> told me that...
> > This is a simple example - giving a nice error if you're in the wrong
> > directory.
> >
> > Is this sort of patch wanted? If so, I'm sure I can spare the time to
> > look into some polishing.
>
> Of course they are wanted. Thanks, applied.
Ok, another thing I forgot to mention - I moved it to cg-Xlib so that
it's checked everytime you run a command, unless the command says it
does need a repository in order to run successfully (that's the case for
cg-clone, cg-init and cg-help).
--
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] 3+ messages in thread
end of thread, other threads:[~2005-06-05 20:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-01 19:22 [COGITO PATCH] Small, simple and obvious cleanups (are they wanted at this stage?) C. Cooke
2005-06-05 20:25 ` Petr Baudis
2005-06-05 20:34 ` Petr Baudis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox