* [PATCH 2/3] Human friendly git: accept human readable options.
@ 2007-04-01 0:00 Sloof Lirpa
0 siblings, 0 replies; only message in thread
From: Sloof Lirpa @ 2007-04-01 0:00 UTC (permalink / raw)
To: Junio C Hamamo; +Cc: git
In kindergarten, we were taught to say "please" when asking
another person to do something for us. With this, git
understands:
$ git, please commit
Signed-off-by: Sloof Lirpa <sitemaster@cox.net>
---
git.c | 14 +++++++++++---
1 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/git.c b/git.c
index 5b1bc2a..7909fd3 100644
--- a/git.c
+++ b/git.c
@@ -34,7 +34,15 @@ static int handle_options(const char*** argv, int* argc)
while (*argc > 0) {
const char *cmd = (*argv)[0];
- if (cmd[0] != '-')
+
+ /*
+ * Additional "human friendly" options do not begin
+ * with '-'.
+ */
+ if (!strcmp(cmd, "please"))
+ ; /* no-op */
+
+ else if (cmd[0] != '-')
break;
/*
@@ -42,13 +50,13 @@ static int handle_options(const char*** argv, int* argc)
* commands can be written with "--" prepended
* to make them look like flags.
*/
- if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
+ else if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
break;
/*
* Check remaining flags.
*/
- if (!prefixcmp(cmd, "--exec-path")) {
+ else if (!prefixcmp(cmd, "--exec-path")) {
cmd += 11;
if (*cmd == '=')
git_set_exec_path(cmd + 1);
--
1.5.1.rc3.26.g4f01
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-04-01 0:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-01 0:00 [PATCH 2/3] Human friendly git: accept human readable options Sloof Lirpa
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).