-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
114 lines (101 loc) · 3.48 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: Git Gosling
strict: true
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
repo_name: HonkingGoose/git-gosling
repo_url: https://github.com/HonkingGoose/git-gosling
edit_uri: edit/main/docs/
# Watch the includes directory, so the server preview updates after editing the abbrevations.md file.
watch:
- includes
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- navigation.top
- navigation.instant
- toc.integrate
- toc.follow
- content.action.edit
- navigation.footer
- navigation.prune
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: light blue
accent: light blue
toggle:
icon: material/weather-sunny
name: Switch to system preference
markdown_extensions:
- admonition
- pymdownx.superfences
- pymdownx.highlight
- abbr
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
nav:
- Home: "index.md"
- Git Basics:
- "git_basics/short_introduction_to_git.md"
- Getting Started:
- "getting_started/conventions.md"
- "getting_started/installing_git.md"
- "getting_started/create_a_github_account.md"
- "getting_started/configuring_git.md"
- "getting_started/getting_help_with_git.md"
- The Nano text editor:
- "the_nano_text_editor/introduction_to_the_nano_text_editor.md"
- Git Sandbox:
- "git_sandbox/setup_your_git_sandbox.md"
- "git_sandbox/shell_expansion.md"
- "git_sandbox/explore_your_git_sandbox.md"
- "git_sandbox/introduction_to_git_status.md"
- "git_sandbox/create_a_new_file_and_track_it.md"
- "git_sandbox/making_your_first_commit.md"
- "git_sandbox/add_extra_lines_to_file.md"
- "git_sandbox/use_git_restore_to_undo_things.md"
- "git_sandbox/create_a_new_branch.md"
- "git_sandbox/switching_between_branches.md"
- "git_sandbox/your_first_merge.md"
- "git_sandbox/create_your_first_github_repo.md"
- "git_sandbox/editing_a_file_on_github.md"
- "git_sandbox/merge_pull_request.md"
- "git_sandbox/fetching_changes_merging_git_pull.md"
- "git_sandbox/check_the_repository_history_with_git_log.md"
- Recommendations:
- "recommendations/use_a_gitignore_file.md"
- "recommendations/split_up_your_commits.md"
- "recommendations/write_good_commit_messages.md"
- "recommendations/git_aliases.md"
- "recommendations/use_a_linter.md"
- "recommendations/dealing_with_merges.md"
- "recommendations/use_a_dependency_bot.md"
- "recommendations/testing_and_github_actions.md"
- Advanced Topics:
- "advanced_topics/working_with_large_files.md"
- "advanced_topics/advanced_git_configuration.md"
- "advanced_topics/contribute_to_a_project_by_forking.md"
- "advanced_topics/clean_up_your_git_history.md"
- "advanced_topics/use_git_bisect_to_find_bugs.md"
- "advanced_topics/github_cli.md"
- Further Resources:
- "further_resources/recommended_reading.md"
- License: "license.md"