From: Heiko Voigt Date: Wed, 3 Aug 2011 18:06:17 +0000 (+0200) Subject: add gitignore entry to description about how to write a builtin X-Git-Tag: v1.7.6.1~38 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e9e0643fe64b613b6596b79b59df8ff10746f1a1;p=git.git add gitignore entry to description about how to write a builtin If the author forgets the gitignore entry the built result will show up as new file in the git working directory. Signed-off-by: Heiko Voigt Signed-off-by: Junio C Hamano --- diff --git a/Documentation/technical/api-builtin.txt b/Documentation/technical/api-builtin.txt index 5cb2b0590..b0cafe87b 100644 --- a/Documentation/technical/api-builtin.txt +++ b/Documentation/technical/api-builtin.txt @@ -49,6 +49,8 @@ Additionally, if `foo` is a new command, there are 3 more things to do: . Add an entry for `git-foo` to `command-list.txt`. +. Add an entry for `/git-foo` to `.gitignore`. + How a built-in is called ------------------------