My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0922570
)
add gitignore entry to description about how to write a builtin
author
Heiko Voigt
<hvoigt@hvoigt.net>
Wed, 3 Aug 2011 18:06:17 +0000
(20:06 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 3 Aug 2011 18:44:23 +0000
(11:44 -0700)
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 <hvoigt@hvoigt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/technical/api-builtin.txt
patch
|
blob
|
history
diff --git
a/Documentation/technical/api-builtin.txt
b/Documentation/technical/api-builtin.txt
index
5cb2b05
..
b0cafe8
100644
(file)
--- 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
------------------------