Skip to content

Commit c49a89d

Browse files
committed
convert lesson from jekyll to sphinx
1 parent fc289e9 commit c49a89d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+1907
-1795
lines changed

.gitignore

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
_drafts/
2-
_site/
3-
.sass-cache
4-
Gemfile.lock
5-
# vim swap files
6-
*.swp
7-
*~
8-
.jekyll-cache/
1+
_build/
2+
build/
3+
.ipynb_checkpoints
4+
/venv*
5+
.jupyter_cache
6+
jupyter_execute
7+
/content/__pycache__/
8+
/.ccls-cache/
9+
/content/.auctex-auto/
10+
/content/code/*/solution/build*

.gitmodules

-3
This file was deleted.

Gemfile

-2
This file was deleted.

LICENSE

-1
Original file line numberDiff line numberDiff line change
@@ -393,4 +393,3 @@ the avoidance of doubt, this paragraph does not form part of the
393393
public licenses.
394394

395395
Creative Commons may be contacted at creativecommons.org.
396-

Makefile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = content
9+
BUILDDIR = _build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
# [Introduction to version control with Git](https://coderefinery.github.io/git-intro/)
42

5-
- [Credit and license](https://coderefinery.github.io/git-intro/license/)
3+
- [Credit and license](https://coderefinery.github.io/git-intro/credits/)

_config.yml

-28
This file was deleted.

_episodes/04-staging-area.md

-243
This file was deleted.

0 commit comments

Comments
 (0)