-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
88 lines (83 loc) · 2.52 KB
/
mkdocs.yml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
site_name: Gitx
site_description: TUI based git helper
site_url: https://gitxtui.github.io/gitx/
repo_url: https://github.com/gitxtui/gitx
repo_name: gitxtui/gitx
theme:
name: material
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: black
toggle:
icon: material/brightness-5
name: Switch to light mode
features:
- navigation.instant
- navigation.tracking
- navigation.expand
- navigation.indexes
- navigation.top
- navigation.footer
- content.code.copy
- toc.follow
- navigation.tabs
# - navigation.tabs.sticky
- navigation.sections
- navigation.path
- toc.integrate
# - navigation.expand
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/textual-theme.js
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
# Page tree
nav:
- Home: index.md
- Installation: installation.md
- Usage:
- Getting Started: usage/getting-started.md
- Basic Commands: usage/basic-commands.md
- Tutorial:
- Introduction: tutorial/introduction.md
- Git Basics:
- Understanding Version Control: tutorial/basics/version-control.md
- Repositories: tutorial/basics/repositories.md
- Committing Changes: tutorial/basics/committing.md
- Viewing History: tutorial/basics/history.md
- Working with Branches:
- Branch Concepts: tutorial/branches/concepts.md
- Creating & Switching: tutorial/branches/creating-switching.md
- Merging: tutorial/branches/merging.md
- Resolving Conflicts: tutorial/branches/conflicts.md
- Remote Operations:
- Working with Remotes: tutorial/remote/remotes.md
- Pushing & Pulling: tutorial/remote/push-pull.md
- Pull Requests: tutorial/remote/pull-request.md
# TODO: Add more topics to Tutorial covering advanced git features, Git Workflows, GitHub, etc.
- Contributing:
- Guidelines: contributing/guidelines.md
- Development Setup: contributing/development.md