diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-12-21 15:19:25 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-12-21 15:19:25 -0800 |
commit | b10c4add03044b7be358ff7231b9ec50016ded4b (patch) | |
tree | 0bd1e3d04572e41b1513bbe1573f6eb560fbf7ef /Documentation | |
parent | 814a1924b4ff5bae8aecb4222e6cefc58331527c (diff) | |
parent | 81670e9bfcd8a24410cf16f4362c720f950f61d4 (diff) | |
download | git-b10c4add03044b7be358ff7231b9ec50016ded4b.tar.gz |
Merge branch 'ta/new-command-howto'
* ta/new-command-howto:
Move ./technical/api-command.txt to ./howto/new-command.txt
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Makefile | 1 | ||||
-rw-r--r-- | Documentation/howto/new-command.txt (renamed from Documentation/technical/api-command.txt) | 9 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 7df75d0b9d..f3afcb620d 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 diff --git a/Documentation/technical/api-command.txt b/Documentation/howto/new-command.txt index d3b978177b..36502f6718 100644 --- a/Documentation/technical/api-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. |