* [PATCH 0/3] Move api-command.txt from ./technical/ to ./howto
@ 2012-12-21 18:02 Thomas Ackermann
2012-12-21 18:05 ` [PATCH 1/3] Move ./technical/api-command.txt to ./howto/new-command.txt Thomas Ackermann
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Thomas Ackermann @ 2012-12-21 18:02 UTC (permalink / raw)
To: git; +Cc: th.acker
"api-command.txt" describes a different kind of API than the other api-* documents.
So better move it to the howto documents in ./Documentation/howto and rename
to "new-command.txt".
[PATCH 1/3] Move ./technical/api-command.txt to ./howto/new-command.txt
[PATCH 2/3] Add new-command.txt to ./Documentation/Makefile
[PATCH 3/3] Amend new-command.txt to be processed correctly by howto-index.sh
Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
---
Thomas
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 1/3] Move ./technical/api-command.txt to ./howto/new-command.txt
2012-12-21 18:02 [PATCH 0/3] Move api-command.txt from ./technical/ to ./howto Thomas Ackermann
@ 2012-12-21 18:05 ` Thomas Ackermann
2012-12-21 18:06 ` [PATCH 2/3] Add new-command.txt to ./Documentation/Makefile Thomas Ackermann
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Thomas Ackermann @ 2012-12-21 18:05 UTC (permalink / raw)
To: git; +Cc: th.acker
Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
---
Documentation/{technical/api-command.txt => howto/new-command.txt} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename Documentation/{technical/api-command.txt => howto/new-command.txt} (100%)
diff --git a/Documentation/technical/api-command.txt b/Documentation/howto/new-command.txt
similarity index 100%
rename from Documentation/technical/api-command.txt
rename to Documentation/howto/new-command.txt
--
1.8.0.msysgit.0
---
Thomas
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 2/3] Add new-command.txt to ./Documentation/Makefile
2012-12-21 18:02 [PATCH 0/3] Move api-command.txt from ./technical/ to ./howto Thomas Ackermann
2012-12-21 18:05 ` [PATCH 1/3] Move ./technical/api-command.txt to ./howto/new-command.txt Thomas Ackermann
@ 2012-12-21 18:06 ` Thomas Ackermann
2012-12-21 18:07 ` [PATCH 3/3] Amend new-command.txt to be processed correctly by howto-index.sh Thomas Ackermann
2012-12-21 18:33 ` [PATCH 0/3] Move api-command.txt from ./technical/ to ./howto Junio C Hamano
3 siblings, 0 replies; 5+ messages in thread
From: Thomas Ackermann @ 2012-12-21 18:06 UTC (permalink / raw)
To: git; +Cc: th.acker
Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
---
Documentation/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/Makefile b/Documentation/Makefile
index 7df75d0..f3afcb6 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -21,6 +21,7 @@ ARTICLES += git-tools
ARTICLES += git-bisect-lk2009
# with their own formatting rules.
SP_ARTICLES = user-manual
+SP_ARTICLES += howto/new-command
SP_ARTICLES += howto/revert-branch-rebase
SP_ARTICLES += howto/using-merge-subtree
SP_ARTICLES += howto/using-signed-tag-in-pull-request
--
1.8.0.msysgit.0
---
Thomas
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/3] Amend new-command.txt to be processed correctly by howto-index.sh
2012-12-21 18:02 [PATCH 0/3] Move api-command.txt from ./technical/ to ./howto Thomas Ackermann
2012-12-21 18:05 ` [PATCH 1/3] Move ./technical/api-command.txt to ./howto/new-command.txt Thomas Ackermann
2012-12-21 18:06 ` [PATCH 2/3] Add new-command.txt to ./Documentation/Makefile Thomas Ackermann
@ 2012-12-21 18:07 ` Thomas Ackermann
2012-12-21 18:33 ` [PATCH 0/3] Move api-command.txt from ./technical/ to ./howto Junio C Hamano
3 siblings, 0 replies; 5+ messages in thread
From: Thomas Ackermann @ 2012-12-21 18:07 UTC (permalink / raw)
To: git; +Cc: th.acker
Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
---
Documentation/howto/new-command.txt | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/Documentation/howto/new-command.txt b/Documentation/howto/new-command.txt
index d3b9781..36502f6 100644
--- a/Documentation/howto/new-command.txt
+++ b/Documentation/howto/new-command.txt
@@ -1,5 +1,10 @@
-Integrating new subcommands
-===========================
+From: Eric S. Raymond <esr@thyrsus.com>
+Abstract: This is how-to documentation for people who want to add extension
+ commands to git. It should be read alongside api-builtin.txt.
+Content-type: text/asciidoc
+
+How to integrate new subcommands
+================================
This is how-to documentation for people who want to add extension
commands to git. It should be read alongside api-builtin.txt.
--
1.8.0.msysgit.0
---
Thomas
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 0/3] Move api-command.txt from ./technical/ to ./howto
2012-12-21 18:02 [PATCH 0/3] Move api-command.txt from ./technical/ to ./howto Thomas Ackermann
` (2 preceding siblings ...)
2012-12-21 18:07 ` [PATCH 3/3] Amend new-command.txt to be processed correctly by howto-index.sh Thomas Ackermann
@ 2012-12-21 18:33 ` Junio C Hamano
3 siblings, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2012-12-21 18:33 UTC (permalink / raw)
To: Thomas Ackermann; +Cc: git
Thomas Ackermann <th.acker@arcor.de> writes:
> "api-command.txt" describes a different kind of API than the other api-* documents.
> So better move it to the howto documents in ./Documentation/howto and rename
> to "new-command.txt".
>
> [PATCH 1/3] Move ./technical/api-command.txt to ./howto/new-command.txt
> [PATCH 2/3] Add new-command.txt to ./Documentation/Makefile
> [PATCH 3/3] Amend new-command.txt to be processed correctly by howto-index.sh
>
> Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
Seems good from a cursory look, but I think this is better done in a
single patch. If you do not mind, I'll squash them into one.
Thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-12-21 18:34 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-21 18:02 [PATCH 0/3] Move api-command.txt from ./technical/ to ./howto Thomas Ackermann
2012-12-21 18:05 ` [PATCH 1/3] Move ./technical/api-command.txt to ./howto/new-command.txt Thomas Ackermann
2012-12-21 18:06 ` [PATCH 2/3] Add new-command.txt to ./Documentation/Makefile Thomas Ackermann
2012-12-21 18:07 ` [PATCH 3/3] Amend new-command.txt to be processed correctly by howto-index.sh Thomas Ackermann
2012-12-21 18:33 ` [PATCH 0/3] Move api-command.txt from ./technical/ to ./howto 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