-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
57 lines (56 loc) · 1.57 KB
/
mkdocs.yml
File metadata and controls
57 lines (56 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
site_name: 'Git in 30 Minutes: A Beginner''s Guide for Technical Writers'
site_url: https://www.git30minutes.com
site_description: Free web edition + optional eBook. A concise, practical Git guide
for technical writers.
theme:
name: material
icon:
logo: material/git
features:
- navigation.top
- navigation.sections
- navigation.footer
- content.code.copy
language: en
custom_dir: overrides
palette:
- scheme: slate
primary: black
accent: amber
toggle:
icon: material/weather-night
name: Switch to light mode
- scheme: default
primary: blue
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to dark mode
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- attr_list
- md_in_html
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
nav:
- Home: index.md
- Step 1 - Set Up and Initialize Your Project: 01-setup.md
- Step 2 - Make Your First Commit: 02-first-commit.md
- Step 3- Check Status and Make Changes: 03-status.md
- Step 4 - Branch Out: 04-branching.md
- Step 5 - Collaborate with Remote Repositories: 05-remotes.md
- Where to Go Next: A1-resources.md
- Top 10 Most Commonly Used Git Commands: A2-top10.md
- Example Scenario Using All 10 Commands: A3-example.md
- 10 Most Common Git Problems (and How To Resolve Them): A4-problems.md
- Git Glossary: A5-glossary.md
- Command Line Crash Course: A6-cli.md
- About the Author: A7-about.md
- About this Book: thisbook.md