* [PATCH] added a built-in alias for 'stage' to the 'add' command
@ 2008-12-01 17:29 Scott Chacon
2008-12-01 18:25 ` Jeff King
2008-12-02 1:38 ` Junio C Hamano
0 siblings, 2 replies; 3+ messages in thread
From: Scott Chacon @ 2008-12-01 17:29 UTC (permalink / raw)
To: git; +Cc: gitster
this comes from conversation at the GitTogether where we thought it would
be helpful to be able to teach people to 'stage' files because it tends
to cause confusion when told that they have to keep 'add'ing them.
This continues the movement to start referring to the index as a
staging area (eg: the --staged alias to 'git diff'). Also added a
doc file for 'git stage' that basically points to the docs for
'git add'.
Signed-off-by: Scott Chacon <schacon@gmail.com>
---
Documentation/git-stage.txt | 21 +++++++++++++++++++++
git.c | 1 +
2 files changed, 22 insertions(+), 0 deletions(-)
create mode 100644 Documentation/git-stage.txt
diff --git a/Documentation/git-stage.txt b/Documentation/git-stage.txt
new file mode 100644
index 0000000..0640198
--- /dev/null
+++ b/Documentation/git-stage.txt
@@ -0,0 +1,21 @@
+git-stage(1)
+==============
+
+NAME
+----
+git-stage - Add file contents to the staging area
+
+
+SYNOPSIS
+--------
+[verse]
+'git stage' [-n] [-v] [--force | -f] [--interactive | -i] [--patch | -p]
+ [--all | [--update | -u]] [--intent-to-add | -N]
+ [--refresh] [--ignore-errors] [--] <filepattern>...
+
+
+DESCRIPTION
+-----------
+
+This is a synonym for linkgit:git-add[1]. Please refer to the
+documentation of that command.
diff --git a/git.c b/git.c
index 89feb0b..9e5813c 100644
--- a/git.c
+++ b/git.c
@@ -266,6 +266,7 @@ static void handle_internal_command(int argc, const char **argv)
const char *cmd = argv[0];
static struct cmd_struct commands[] = {
{ "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
+ { "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
{ "annotate", cmd_annotate, RUN_SETUP },
{ "apply", cmd_apply },
{ "archive", cmd_archive },
--
1.6.0.8.gc9c8
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] added a built-in alias for 'stage' to the 'add' command
2008-12-01 17:29 [PATCH] added a built-in alias for 'stage' to the 'add' command Scott Chacon
@ 2008-12-01 18:25 ` Jeff King
2008-12-02 1:38 ` Junio C Hamano
1 sibling, 0 replies; 3+ messages in thread
From: Jeff King @ 2008-12-01 18:25 UTC (permalink / raw)
To: Scott Chacon; +Cc: git, gitster
On Mon, Dec 01, 2008 at 09:29:02AM -0800, Scott Chacon wrote:
> this comes from conversation at the GitTogether where we thought it would
> be helpful to be able to teach people to 'stage' files because it tends
> to cause confusion when told that they have to keep 'add'ing them.
>
> This continues the movement to start referring to the index as a
> staging area (eg: the --staged alias to 'git diff'). Also added a
> doc file for 'git stage' that basically points to the docs for
> 'git add'.
FWIW, I think this is a step in the right direction. Or at least if it's
the wrong direction, I don't think we're actually _hurting_ anybody,
since we're not changing existing commands.
Out of curiosity, have you had any experiences referring to this as "git
stage" (maybe just by setting a per-user alias) with new users?
> +SYNOPSIS
> +--------
> +[verse]
> +'git stage' [-n] [-v] [--force | -f] [--interactive | -i] [--patch | -p]
> + [--all | [--update | -u]] [--intent-to-add | -N]
> + [--refresh] [--ignore-errors] [--] <filepattern>...
It seems like this might get stale with respect to git-add(1). Since
we're not hiding the fact that this is really an alias for "add", maybe
it would be better to just have "git stage [options] [--]
<filepattern>" (or maybe even something simpler).
-Peff
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] added a built-in alias for 'stage' to the 'add' command
2008-12-01 17:29 [PATCH] added a built-in alias for 'stage' to the 'add' command Scott Chacon
2008-12-01 18:25 ` Jeff King
@ 2008-12-02 1:38 ` Junio C Hamano
1 sibling, 0 replies; 3+ messages in thread
From: Junio C Hamano @ 2008-12-02 1:38 UTC (permalink / raw)
To: Scott Chacon; +Cc: git, gitster
Scott Chacon <schacon@gmail.com> writes:
> Subject: Re: [PATCH] added a built-in alias for 'stage' to the 'add' command
s/added/Add/;
Write your commit log message in present tense (recall David Brown's talk
at GitTogether '08? ;-)
> this comes from conversation at the GitTogether where we thought it would
s/this/This/;
> be helpful to be able to teach people to 'stage' files because it tends
> to cause confusion when told that they have to keep 'add'ing them.
>
> This continues the movement to start referring to the index as a
> staging area (eg: the --staged alias to 'git diff'). Also added a
> doc file for 'git stage' that basically points to the docs for
> 'git add'.
>
> Signed-off-by: Scott Chacon <schacon@gmail.com>
I think this is fine but I'd rather not risk the documentation getting
stale over time, so...
> +SYNOPSIS
> +--------
> +[verse]
> +'git stage' [-n] [-v] [--force | -f] [--interactive | -i] [--patch | -p]
> + [--all | [--update | -u]] [--intent-to-add | -N]
> + [--refresh] [--ignore-errors] [--] <filepattern>...
...I think this should read something like
'git stage' args...
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-12-02 1:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-01 17:29 [PATCH] added a built-in alias for 'stage' to the 'add' command Scott Chacon
2008-12-01 18:25 ` Jeff King
2008-12-02 1:38 ` Junio C Hamano
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).