Skip to content

Commit 3273605

Browse files
nasamuffingitster
authored andcommitted
documentation: add lab for first contribution
This code lab covers how to add a new command to Git and, in the process, everything from cloning git/git to getting reviewed on the mail list. It's meant for new contributors to go through interactively, learning the techniques generally used by the git/git development community. Signed-off-by: Emily Shaffer <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ffac537 commit 3273605

File tree

3 files changed

+893
-0
lines changed

3 files changed

+893
-0
lines changed

Documentation/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ cmds-*.txt
1212
mergetools-*.txt
1313
manpage-base-url.xsl
1414
SubmittingPatches.txt
15+
MyFirstContribution.txt
1516
tmp-doc-diff/
1617
GIT-ASCIIDOCFLAGS

Documentation/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ API_DOCS = $(patsubst %.txt,%,$(filter-out technical/api-index-skel.txt technica
7474
SP_ARTICLES += $(API_DOCS)
7575

7676
TECH_DOCS += SubmittingPatches
77+
TECH_DOCS += MyFirstContribution
7778
TECH_DOCS += technical/hash-function-transition
7879
TECH_DOCS += technical/http-protocol
7980
TECH_DOCS += technical/index-format
@@ -347,6 +348,7 @@ clean:
347348
$(RM) howto-index.txt howto/*.html doc.dep
348349
$(RM) technical/*.html technical/api-index.txt
349350
$(RM) SubmittingPatches.txt
351+
$(RM) MyFirstContribution.txt
350352
$(RM) $(cmds_txt) $(mergetools_txt) *.made
351353
$(RM) manpage-base-url.xsl
352354
$(RM) GIT-ASCIIDOCFLAGS
@@ -390,6 +392,9 @@ $(patsubst %,%.html,$(API_DOCS) technical/api-index $(TECH_DOCS)): %.html : %.tx
390392
SubmittingPatches.txt: SubmittingPatches
391393
$(QUIET_GEN) cp $< $@
392394

395+
MyFirstContribution.txt: MyFirstContribution
396+
$(QUIET_GEN) cp $< $@
397+
393398
XSLT = docbook.xsl
394399
XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
395400

0 commit comments

Comments
 (0)